forked from KartulUdus/PoracleJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
23 lines (23 loc) · 777 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
{
"parserOptions": { "ecmaVersion": 12 },
"extends": "airbnb-base",
"rules": {
"indent": [ "error", "tab", { "SwitchCase": 1 } ],
"semi": [ "error", "never" ],
"import/no-dynamic-require": [ "off" ],
"global-require": [ "off" ],
"no-tabs": [ "off" ],
"array-callback-return": [ "off" ],
"max-len": [ "off" ],
"eol-last": [ "off" ],
"consistent-return": [ "off" ],
"no-restricted-syntax": [ "off" ],
"no-mixed-operators": [ "off" ],
"no-return-assign": ["off"],
"no-await-in-loop": [ "off" ],
"no-plusplus": [ "off" ],
"no-throw-literal": ["off"],
"no-param-reassign": ["off"],
"no-bitwise": ["error", { "allow": ["~"] }]
}
}