-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
26 lines (26 loc) · 854 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
{
"extends": [
"oclif",
"oclif-typescript"
],
"reportUnusedDisableDirectives": true,
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-use-before-define": ["error", {"functions": false}],
"camelcase": ["warn", {"properties": "never"}],
"indent": ["error", 2, {"SwitchCase": 1, "MemberExpression": 1}],
"no-else-return": "off",
"no-negated-condition": "off",
"node/no-extraneous-import": "off",
"node/no-missing-import": "off",
"unicorn/no-array-reduce": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-object-from-entries": "off",
"unicorn/prefer-switch": "off",
"valid-jsdoc": [
"warn",
{"requireParamType": false, "requireReturn": false, "requireReturnType": false}
]
}
}