-
Notifications
You must be signed in to change notification settings - Fork 37
/
.eslintrc
32 lines (32 loc) · 958 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
{
"extends": [
"oclif",
"oclif-typescript"
],
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"semi": "off",
"@typescript-eslint/semi": ["warn", "never"],
"unicorn/filename-case": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/numeric-separators-style": "off",
"unicorn/no-hex-escape": "off",
"unicorn/better-regex": "off",
"unicorn/no-zero-fractions": "off",
"unicorn/no-array-for-each": "off",
"unicorn/explicit-length-check": "off",
"unicorn/no-process-exit": "off",
"no-process-exit": "off",
"no-await-in-loop": "off",
"no-control-regex": "off",
"max-nested-callbacks": "off",
"unicorn/prefer-json-parse-buffer": "off",
"camelcase": "off",
"no-console": "off",
"no-unused-expressions": "off",
"node/no-missing-import": "off",
"complexity": "off",
"no-constant-condition": "off",
"indent": ["error", 2, { "SwitchCase": 1 }]
}
}