-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
25 lines (25 loc) · 959 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
{
"extends": ["standard-with-typescript"],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-member-accessibility": ["error"],
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"eqeqeq": "warn",
"camelcase": "off",
"@typescript-eslint/restrict-plus-operands": "off",
"new-cap": "warn",
"no-fallthrough": "off",
"@typescript-eslint/no-this-alias": "warn",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/prefer-nullish-coalescing": "warn",
"@typescript-eslint/consistent-type-assertions": "warn",
"@typescript-eslint/no-throw-literal": "off",
"no-void": "warn",
"no-var": "error",
"import/no-cycle": "error"
}
}