-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
36 lines (30 loc) · 945 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
],
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"parser": "@typescript-eslint/parser",
"project": "./tsconfig.json"
},
"rules": {
"no-console": "off",
// This rule has issues with the TypeScript parser, but tsc catches these sorts of errors anyway.
// See: https://github.com/typescript-eslint/typescript-eslint/issues/342
"no-undef": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/indent": [1, 2, {"SwitchCase": 1, "VariableDeclarator": 1}],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-use-before-define": "off"
}
}