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
34 lines (34 loc) · 943 Bytes
/
.eslintrc
File metadata and controls
34 lines (34 loc) · 943 Bytes
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
{
"extends": ["airbnb-base", "plugin:prettier/recommended"],
"env": {
"mocha": true
},
"rules": {
"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",
"radix": "off",
"vars-on-top": "off"
}
}