-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
50 lines (50 loc) · 1.18 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
45
46
47
48
49
50
{
"globals": {},
"env": {
"browser": true,
"commonjs": true,
"node": true,
"es2022": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest"
},
"plugins": [
"@typescript-eslint",
"import",
"json",
"html"
],
"extends": [
"airbnb-base",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:json/recommended-with-comments",
"plugin:import/typescript"
],
"ignorePatterns": [
"public/*.js"
],
"rules": {
"max-len": [1, 275, 3],
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unused-vars": "off",
"dot-notation":"off",
"import/extensions": "off",
"import/no-extraneous-dependencies":"off",
"import/prefer-default-export": "off",
"lines-between-class-members":"off",
"no-continue":"off",
"no-mixed-operators":"off",
"no-nested-ternary":"off",
"no-plusplus":"off",
"no-param-reassign":"off",
"no-restricted-syntax": "off",
"object-curly-newline":"off",
"prefer-destructuring":"off",
"prefer-template":"off",
"radix":"off"
}
}