Skip to content

Commit

Permalink
update dependencies, tslit to eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
aeschli committed Jul 3, 2020
1 parent f53c7ba commit 9533d14
Show file tree
Hide file tree
Showing 7 changed files with 1,180 additions and 291 deletions.
23 changes: 23 additions & 0 deletions .eslintrc.json
@@ -0,0 +1,23 @@

{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/class-name-casing": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off",
"no-unused-expressions": "warn",
"no-duplicate-imports": "warn",
"new-parens": "warn"
}
}

0 comments on commit 9533d14

Please sign in to comment.