We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac73c70 commit 4ea969dCopy full SHA for 4ea969d
.eslintrc.json
@@ -1,8 +1,14 @@
1
{
2
"root": true,
3
+ "extends": [
4
+ "eslint:recommended",
5
+ "plugin:@typescript-eslint/recommended",
6
+ "plugin:@typescript-eslint/recommended-requiring-type-checking"
7
+ ],
8
"parser": "@typescript-eslint/parser",
9
"parserOptions": {
10
"ecmaVersion": 6,
11
+ "project": "./tsconfig.json",
12
"sourceType": "module"
13
},
14
"plugins": [
@@ -14,7 +20,8 @@
20
"curly": "warn",
15
21
"eqeqeq": "warn",
16
22
"no-throw-literal": "warn",
17
- "semi": "off"
23
+ "semi": "off",
24
+ "indent": ["error", "tab"]
18
25
19
26
"ignorePatterns": [
27
"**/*.d.ts"
0 commit comments