-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy path.eslintrc.json
More file actions
25 lines (25 loc) · 799 Bytes
/
.eslintrc.json
File metadata and controls
25 lines (25 loc) · 799 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
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended"],
"plugins": ["@typescript-eslint"],
"rules": {
"semi": "warn",
"quotes": ["warn", "double"],
"no-dupe-args": "error",
"no-dupe-else-if": "error",
"no-unreachable-loop": "error",
"no-unreachable": "error",
"no-duplicate-imports": "error",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-require-imports": "off"
}
}