-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.eslintrc.json
More file actions
38 lines (38 loc) · 1017 Bytes
/
.eslintrc.json
File metadata and controls
38 lines (38 loc) · 1017 Bytes
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
{
"env": {
"browser": true,
"node": true,
"es2021": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"plugins": ["@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 13,
"sourceType": "module"
},
"rules": {
"indent": "off",
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
],
"comment-format": "off",
"comma-dangle": ["error", "never"],
"object-literal-sort-keys": "off",
"arrow-parens": "off",
"interface-name": ["off", "always-prefix"],
"semicolon": "off",
"max-line-length": "off",
"object-literal-key-quotes": "off",
"no-shadowed-variable": "off",
"no-case-declarations": "off",
"no-ex-assign": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/indent": "off",
"@typescript-eslint/no-var-requires": "off"
}
}