Skip to content

Commit 9533d14

Browse files
committed
update dependencies, tslit to eslint
1 parent f53c7ba commit 9533d14

File tree

7 files changed

+1180
-291
lines changed

7 files changed

+1180
-291
lines changed

.eslintrc.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
{
3+
"root": true,
4+
"parser": "@typescript-eslint/parser",
5+
"parserOptions": {
6+
"ecmaVersion": 6,
7+
"sourceType": "module"
8+
},
9+
"plugins": [
10+
"@typescript-eslint"
11+
],
12+
"rules": {
13+
"@typescript-eslint/class-name-casing": "warn",
14+
"@typescript-eslint/semi": "warn",
15+
"curly": "warn",
16+
"eqeqeq": "warn",
17+
"no-throw-literal": "warn",
18+
"semi": "off",
19+
"no-unused-expressions": "warn",
20+
"no-duplicate-imports": "warn",
21+
"new-parens": "warn"
22+
}
23+
}

0 commit comments

Comments
 (0)