-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc.json
44 lines (44 loc) · 1.09 KB
/
.eslintrc.json
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
37
38
39
40
41
42
43
44
{
"globals": {},
"env": {
"commonjs": true,
"node": true,
"es2022": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": { "ecmaVersion": 2022 },
"plugins": [
"@typescript-eslint",
"import",
"json"
],
"extends": [
"airbnb-base",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:json/recommended-with-comments",
"plugin:import/typescript"
],
"ignorePatterns": [],
"rules": {
"max-len": [1, 275, 3],
"@typescript-eslint/ban-ts-comment":"off",
"dot-notation":"off",
"import/extensions":"off",
"import/prefer-default-export":"off",
"import/no-extraneous-dependencies":"off",
"lines-between-class-members":"off",
"no-await-in-loop":"off",
"no-bitwise":"off",
"no-mixed-operators":"off",
"no-plusplus":"off",
"no-case-declarations":"off",
"no-param-reassign":"off",
"no-restricted-syntax":"off",
"no-regex-spaces":"off",
"object-curly-newline":"off",
"prefer-template":"off",
"radix":"off"
}
}