-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yml
50 lines (50 loc) · 1.39 KB
/
.eslintrc.yml
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
extends: ["prettier"]
rules:
tsdoc/syntax: off
no-cond-assign: off
yml/plain-scalar: off
yml/quotes: off
unicorn/prefer-number-properties: off
'@typescript-eslint/no-explicit-any': off
perfectionist/sort-imports: off
perfectionist/sort-classes: off
perfectionist/sort-objects: off
perfectionist/sort-object-types: off
padding-line-between-statements: off
"@typescript-eslint/no-unused-vars": off
object-shorthand: off
n/no-unpublished-bin: off
n/shebang: off
n/hashbang: off
prefer-destructuring: off
unicorn/prefer-node-protocol: off
unicorn/no-negated-condition: off
no-return-await: off
no-await-in-loop: off
perfectionist/sort-named-imports: off
unicorn/prefer-ternary: off
dot-notation: off
max-depth: ['warn', 10]
complexity: ['warn', 80]
unicorn/escape-case: off
import/no-named-as-default-member: off
unicorn/catch-error-name: off
prefer-arrow-callback: off
n/no-process-exit: off
arrow-body-style: off
unicorn/consistent-function-scoping: off
unicorn/prefer-top-level-await: off
unicorn/prefer-module: off
# no-undef: off
unicorn/no-process-exit: off
camelcase: off
unicorn/no-array-for-each: off
unicorn/prefer-optional-catch-binding: off
func-names: off
no-eq-null: off
eqeqeq: off
no-case-declarations: off
no-fallthrough: off
no-prototype-builtins: off
"@typescript-eslint/ban-types": off
prefer-rest-params: off