forked from sqlpad/sqlpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
45 lines (45 loc) · 1.2 KB
/
.eslintrc
File metadata and controls
45 lines (45 loc) · 1.2 KB
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
38
39
40
41
42
43
44
45
{
"extends": ["airbnb-base", "prettier"],
"env": {
"es6": true,
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 2022
},
"rules": {
"import/prefer-default-export": "off",
"import/extensions": "off",
"camelcase": "off",
"consistent-return": "off",
"dot-notation": "off",
"func-names": "off",
"global-require": "off",
"import/newline-after-import": "off",
"import/no-dynamic-require": "off",
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": "off",
"import/order": "off",
"no-else-return": "off",
"no-multi-assign": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-prototype-builtins": "off",
"no-restricted-globals": "off",
"no-restricted-syntax": "off",
"no-shadow": "off",
"no-underscore-dangle": "off",
"no-use-before-define": "off",
"prefer-const": "off",
"prefer-destructuring": "off",
"prefer-promise-reject-errors": "off",
"prefer-template": "off",
"prefer-arrow-callback": "off",
"arrow-body-style": "off",
"radix": "off",
"vars-on-top": "off",
"prefer-regex-literals": "off",
"no-promise-executor-return": "off"
}
}