Skip to content

Commit 4ea969d

Browse files
committed
Restore lint config
1 parent ac73c70 commit 4ea969d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.eslintrc.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
{
22
"root": true,
3+
"extends": [
4+
"eslint:recommended",
5+
"plugin:@typescript-eslint/recommended",
6+
"plugin:@typescript-eslint/recommended-requiring-type-checking"
7+
],
38
"parser": "@typescript-eslint/parser",
49
"parserOptions": {
510
"ecmaVersion": 6,
11+
"project": "./tsconfig.json",
612
"sourceType": "module"
713
},
814
"plugins": [
@@ -14,7 +20,8 @@
1420
"curly": "warn",
1521
"eqeqeq": "warn",
1622
"no-throw-literal": "warn",
17-
"semi": "off"
23+
"semi": "off",
24+
"indent": ["error", "tab"]
1825
},
1926
"ignorePatterns": [
2027
"**/*.d.ts"

0 commit comments

Comments
 (0)