-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.eslintrc.json
31 lines (31 loc) · 949 Bytes
/
.eslintrc.json
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
{
"extends": [
"oclif",
"oclif-typescript",
"airbnb-base",
"airbnb-typescript/base",
"prettier/@typescript-eslint",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2019
},
"plugins": ["prettier"],
"env": {
"node": true,
"es6": true
},
"rules": {
"no-await-in-loop": "warn",
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"no-use-before-define": "off",
"no-underscore-dangle": "off",
"no-continue": "off",
"no-restricted-syntax": ["error", "ForInStatement", "LabeledStatement", "WithStatement"],
"prefer-destructuring": ["error", { "object": true, "array": false }],
"import/prefer-default-export": "warn",
"import/no-extraneous-dependencies": "off",
"@typescript-eslint/no-use-before-define": "off",
"unicorn/filename-case": "off"
}
}