1+ {
2+ "extends" : " airbnb-base" ,
3+ "parser" : " @babel/eslint-parser" ,
4+ "settings" : {
5+ "ecmascript" : 7
6+ },
7+ "parserOptions" : {
8+ "ecmaVersion" : 2018 ,
9+ "ecmaFeatures" : {
10+ "modules" : true ,
11+ "destructuring" : true ,
12+ "classes" : true ,
13+ "forOf" : true ,
14+ "blockBindings" : true ,
15+ "arrowFunctions" : true
16+ }
17+ },
18+ "env" : {
19+ "browser" : true
20+ },
21+ "rules" : {
22+ "arrow-body-style" : 0 ,
23+ "prefer-arrow-callback" : 0 ,
24+ "arrow-parens" : 0 ,
25+ "no-param-reassign" : 0 ,
26+ "no-new" : 0 ,
27+ "consistent-return" : 0 ,
28+ "key-spacing" : 0 ,
29+ "no-multi-spaces" : 0 ,
30+ "no-underscore-dangle" : 0 ,
31+ "one-var" : 0 ,
32+ "global-require" : 0 ,
33+ "class-methods-use-this" : 0 ,
34+ "comma-dangle" : [" error" , {
35+ "arrays" : " always-multiline" ,
36+ "objects" : " always-multiline" ,
37+ "imports" : " always-multiline" ,
38+ "exports" : " always-multiline" ,
39+ "functions" : " never"
40+ }],
41+ "func-names" : 0 ,
42+ "function-paren-newline" : 0 ,
43+ "indent" : 2 ,
44+ "new-cap" : 0 ,
45+ "no-plusplus" : 0 ,
46+ "no-return-assign" : 0 ,
47+ "quote-props" : 0 ,
48+ "template-curly-spacing" : 0 ,
49+ "no-unused-expressions" : 0 ,
50+ "import/extensions" : 0 ,
51+ "import/no-extraneous-dependencies" : 0 ,
52+ "import/no-unresolved" : 0 ,
53+ "import/prefer-default-export" : 0 ,
54+ "linebreak-style" : [" error" , " windows" ]
55+ }
56+ }
0 commit comments