-
-
Notifications
You must be signed in to change notification settings - Fork 677
/
Copy path.eslintrc
33 lines (33 loc) · 859 Bytes
/
.eslintrc
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
{
"rules": {
"max-classes-per-file": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
// FIXME: Remove
"no-useless-return": "off",
// FIXME: Remove
"class-methods-use-this": "off",
// FIXME: Remove
"@typescript-eslint/no-inferrable-types": "off",
// FIXME: Remove
"jest/no-identical-title": "off",
// FIXME: Remove
"jest/no-conditional-expect": "off",
// FIXME: Remove
"no-underscore-dangle": "off",
// FIXME: Remove
"@typescript-eslint/no-this-alias": "off",
// FIXME: Remove
"no-empty-pattern": "off",
// FIXME: Remove
"no-promise-executor-return": "off",
// FIXME: Remove
"@typescript-eslint/no-throw-literal": "off",
// FIXME: Remove
"@typescript-eslint/no-unused-expressions": "off"
}
}