-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
37 lines (37 loc) · 1.01 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
{
"parserOptions": {
"warnOnUnsupportedTypeScriptVersion": false
},
"plugins": ["prettier"],
"extends": ["oclif", "oclif-typescript"],
"rules": {
"prettier/prettier": "error",
"indent": ["error", 2],
"object-curly-spacing": ["error", "always"],
"comma-dangle": ["error", "never"],
"padding-line-between-statements": "off",
"arrow-parens": ["error", "always"],
"node/no-unsupported-features/es-syntax": [
"error",
{ "ignores": ["modules"] }
],
"camelcase": ["error", { "properties": "never" }],
"unicorn/prefer-node-protocol": "off",
"operator-linebreak": [
"error",
"after",
{ "overrides": { "?": "before", ":": "before" } }
],
"@typescript-eslint/ban-ts-comment": "off",
"guard-for-in": "off",
"no-warning-comments": "off",
"unicorn/numeric-separators-style": "off",
"node/no-missing-import": [
"error",
{
"allowModules": ["lib", "commands"],
"tryExtensions": [".js", ".ts"]
}
]
}
}