-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
29 lines (29 loc) · 1.06 KB
/
.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
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"no-prototype-builtins": "off",
"brace-style": "off",
"comma-dangle": "off",
"quotes": "off",
"default-param-last": "off",
"no-control-regex": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/brace-style": ["error", "allman"],
"@typescript-eslint/comma-dangle": ["error", "never"],
"@typescript-eslint/quotes": ["error", "single"],
"@typescript-eslint/default-param-last": ["error"],
"@typescript-eslint/ban-types": ["error", { "types": { "Function": false }, "extendDefaults": true }]
}
}