UNPKG

1.42 kBPlain TextView Raw
1{
2 "env": {
3 "browser": true,
4 "node": true,
5 "es6": true
6 },
7 "parser": "babel-eslint",
8 "ecmaFeatures": {
9 "jsx": true,
10 "modules": true,
11 "blockBindings": true,
12 "defaultParams": true,
13 "objectLiteralComputedProperties": true
14 },
15 "rules": {
16 "strict": 0,
17 "camelcase": 2,
18 "semi": [0, "always"],
19 "quotes": [2, "single"],
20 "accessor-pairs": 2,
21 "comma-dangle": [2, "never"],
22 "comma-style": [2, "last"],
23 "computed-property-spacing": [2,"never"],
24 "curly": [2, "all"],
25 "default-case": 2,
26 "dot-location": [2, "property"],
27 "eol-last": 0,
28 "no-alert": 0,
29 "no-caller": 2,
30 "no-catch-shadow": 0,
31 "no-class-assign": 2,
32 "no-const-assign": 2,
33 "no-constant-condition": 2,
34 "no-dupe-keys": 2,
35 "no-eval": 1,
36 "no-extend-native": 2,
37 "no-script-url": 0,
38 "no-sequences": 0,
39 "no-ternary": 0,
40 "no-throw-literal": 2,
41 "no-undef-init": 2,
42 "no-unused-vars": [1, {"vars": "all", "args": "after-used"}],
43 "no-var": 0,
44 "comma-spacing": 0,
45 "use-isnan": 2,
46 "valid-jsdoc": 0,
47 "vars-on-top": 0,
48 "wrap-iife": [1, "inside"],
49 "wrap-regex": 0,
50 "prefer-const": 0,
51 "sort-vars": 0,
52 "eqeqeq": 2
53 }
54}
\No newline at end of file