UNPKG

603 BJSONView Raw
1{
2 "env": {
3 "browser": true,
4 "commonjs": true
5 },
6 "extends": [
7 "airbnb-base"
8 ],
9 "parserOptions": {
10 "ecmaVersion": 12
11 },
12 "rules": {
13 "max-len": "off",
14 "no-param-reassign": "off",
15 "no-plusplus": "off",
16 "object-curly-newline": ["error", { "multiline": true }],
17 "no-floating-decimal": "off",
18 "prefer-destructuring": ["error", {"object": true, "array": false}],
19 "consistent-return": "off",
20 "no-underscore-dangle": "off",
21 "no-console": "error",
22 "camelcase": "off"
23 }
24}