UNPKG

741 BPlain TextView Raw
1{
2 "extends": "airbnb-base",
3 "env": {
4 "node": true
5 },
6 "parserOptions": {
7 "ecmaVersion": 8,
8 "sourceType": "script",
9 "ecmaFeatures": {
10 "modules": false,
11 "experimentalObjectRestSpread": true,
12 }
13 },
14 "rules": {
15 "max-len": 0,
16 "linebreak-style": 0,
17 "no-plusplus": [
18 2,
19 {
20 "allowForLoopAfterthoughts": true
21 }
22 ],
23 "nonblock-statement-body-position": "off",
24 "no-continue": 0,
25 "indent": [
26 2,
27 "tab"
28 ],
29 "no-tabs": 0,
30 "strict": [
31 2,
32 "safe"
33 ],
34 "curly": [
35 2,
36 "multi",
37 "consistent"
38 ],
39 "import/no-extraneous-dependencies": 0,
40 "import/no-unresolved": 0,
41 "no-underscore-dangle": 0,
42 "no-param-reassign": 0,
43 "generator-star-spacing": 0,
44 "jsx-a11y/href-no-hash": "off"
45 }
46}