Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pksilen committed Jan 13, 2020
0 parents commit 974115a
Show file tree
Hide file tree
Showing 12 changed files with 4,512 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": [ "@babel/preset-typescript", "@babel/preset-env"],
"plugins": ["@babel/plugin-proposal-class-properties"]
}
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
lib
coverage
46 changes: 46 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"env": {
"serviceworker": true,
"browser": true,
"jest": true
},
"rules": {
"operator-linebreak": "off",
"max-len": [
"error",
{
"code": 300
}
],
"comma-dangle": "off",
"space-before-function-paren": "off",
"func-names": "off",
"indent": "off",
"function-paren-newline": "off",
"arrow-parens": "off",
"no-use-before-define": "off",
"no-console": "off",
"object-curly-newline": "off",
"class-methods-use-this": "off",
"no-else-return": "off",
"implicit-arrow-linebreak": "off",
"no-confusing-arrow": "off",
"no-plusplus": "off",
"import/no-named-default": "off",
"@typescript-eslint/explicit-function-return-type": [
"error",
{
"allowExpressions": true
}
]
},
"settings": {}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
lib
.DS_Store
node_modules
.idea
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Universal Mode Vue


Loading

0 comments on commit 974115a

Please sign in to comment.