-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
30 lines (30 loc) · 1.02 KB
/
.eslintrc.cjs
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
module.exports = {
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"standard-with-typescript"
],
parser: '@typescript-eslint/parser',
"plugins": [
"@typescript-eslint"
],
root: true,
rules: {
"@typescript-eslint/no-explicit-any":"off",
"@typescript-eslint/return-await": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/no-extraneous-class": "off",
"@typescript-eslint/no-dynamic-delete": "off",
"no-this-assignment": "off",
"no-async-promise-executor": "off",
"valid-typeof": "off",
"@typescript-eslint/consistent-type-imports":"off"
},
};