forked from zkrising/Tachi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
55 lines (55 loc) · 1.48 KB
/
.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"plugins": [
"cadence"
],
"extends": [
"plugin:cadence/recommended"
],
"root": true,
"ignorePatterns": [
"node_modules",
"js",
"package.json",
"*.d.ts"
],
"rules": {},
"overrides": [
{
"files": [
"**/*.ts"
],
"rules": {
// broken
"lines-around-comment": "off",
// no idea why this is on
"no-param-reassign": "off",
// TENPORARILY OFF AS THEY'RE BROKEN.
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-property-computation": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/strict-boolean-expressions": "off"
}
},
{
"files": [
"**/*.test.ts"
],
"rules": {
// Our test files break these rules *all* the time, and there's
// no point refactoring. Our tests deliberately play with the
// dynamic nature of TS to more accurately test arbitrary input.
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-call": "off",
// we abuse this one for faking data, but we really shouldn't.
"@typescript-eslint/consistent-type-assertions": "warn"
}
}
]
}