-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc.json
More file actions
38 lines (38 loc) · 869 Bytes
/
.eslintrc.json
File metadata and controls
38 lines (38 loc) · 869 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
{
"root": true,
"extends": ["prettier", "plugin:@typescript-eslint/recommended"],
"plugins": ["prettier", "@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/no-explicit-any": 1,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/ban-ts-comment": 0,
"no-undef": "off",
"padding-line-between-statements": "error",
"@typescript-eslint/no-empty-object-type": "off"
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "latest"
},
"env": {
"webextensions": true,
"es6": true,
"browser": true,
"node": true
},
"settings": {
"import/resolver": "typescript"
},
"ignorePatterns": [
"node_modules",
"zip",
"build",
"wasm",
"tlsn",
"util",
"plugins",
"webpack.config.js"
]
}