-
Notifications
You must be signed in to change notification settings - Fork 14
/
.eslintrc
38 lines (38 loc) · 1.27 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
{
"extends": ["oclif", "oclif-typescript"],
"rules": {
"semi": "off",
"quotes": "off",
"indent": "off", // Because prettier does.
"camelcase": "off",
"complexity": "off",
"arrow-parens": "off",
"comma-dangle": "off",
"no-process-exit": "off",
"no-return-await": "off",
"no-await-in-loop": "off",
"n/no-process-exit": "off",
"operator-linebreak": "off",
"no-negated-condition": "off",
"unicorn/import-style": "off",
"object-curly-spacing": "off",
"array-callback-return": "off",
"unicorn/no-process-exit": "off",
"unicorn/no-array-reduce": "off",
"unicorn/prefer-array-some": "off",
"unicorn/no-nested-ternary": "off",
"perfectionist/sort-imports": "off",
"perfectionist/sort-classes": "off",
"perfectionist/sort-objects": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/explicit-length-check": "off",
"perfectionist/sort-object-types": "off",
"perfectionist/sort-named-imports": "off",
"@typescript-eslint/ban-ts-comment": "off",
"unicorn/no-array-callback-reference": "off",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
},
"ignorePatterns": ["test"],
}