-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy path.eslintrc.js
31 lines (31 loc) · 859 Bytes
/
.eslintrc.js
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
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
],
"overrides": [
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
],
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/no-empty-function": 0,
"prefer-const": 0,
"no-async-promise-executor": 0,
"@typescript-eslint/no-inferrable-types": 0,
"@typescript-eslint/no-extra-semi": 0,
"@typescript-eslint/ban-types": 0,
"@typescript-eslint/prefer-as-const": 0,
"@typescript-eslint/no-empty-interface": 0,
}
}