-
Notifications
You must be signed in to change notification settings - Fork 224
/
.eslintrc
34 lines (34 loc) · 1.03 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
{
"plugins": ["import"],
"extends": [
"oclif",
"oclif-typescript"
],
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"typescript": {
"project": "packages/*/tsconfig.json"
}
}
},
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"camelcase":"off",
"import/no-unresolved": "error",
"no-constant-condition": ["error", {"checkLoops": false }],
"node/no-missing-import": "off", // using import/no-unresolved instead
"unicorn/better-regex": "off", // TODO: fix issues and turn this back on
"unicorn/import-style": "off",
"unicorn/no-abusive-eslint-disable": "off",
"unicorn/no-array-for-each": "off",
"unicorn/no-lonely-if":"off",
"unicorn/numeric-separators-style":"off",
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-regexp-test": "off",
"unicorn/prefer-spread": "off" // TODO: fix issues and turn this back on
}
}