|
1 | 1 | { |
2 | | - "env": { |
3 | | - "browser": true, |
4 | | - "es6": true |
5 | | - }, |
6 | | - "extends": "eslint:recommended", |
7 | | - "globals": { |
8 | | - "Cosmoz": false, |
9 | | - "CustomElements": false, |
10 | | - "HTMLImports": false, |
11 | | - "Polymer": false, |
12 | | - "WeakMap": false |
13 | | - }, |
14 | | - "parserOptions": { |
15 | | - "ecmaVersion": 6 |
16 | | - }, |
17 | | - "plugins": [ |
18 | | - "html" |
19 | | - ], |
20 | | - "rules": { |
21 | | - "accessor-pairs": "warn", |
22 | | - "array-bracket-spacing": [ |
23 | | - "error", |
24 | | - "never" |
25 | | - ], |
26 | | - "arrow-parens": [ |
27 | | - "error", |
28 | | - "as-needed" |
29 | | - ], |
30 | | - "arrow-spacing": [ |
31 | | - "error", |
32 | | - { "before": true, "after": true } |
33 | | - ], |
34 | | - "brace-style": "error", |
35 | | - "camelcase": "error", |
36 | | - "comma-spacing": [ |
37 | | - "error", |
38 | | - { |
39 | | - "after": true |
40 | | - } |
41 | | - ], |
42 | | - "comma-style": [ |
43 | | - "error", |
44 | | - "last" |
45 | | - ], |
46 | | - "curly": [ |
47 | | - "error", |
48 | | - "all" |
49 | | - ], |
50 | | - "eqeqeq": [ |
51 | | - "error", |
52 | | - "smart" |
53 | | - ], |
54 | | - "guard-for-in": "error", |
55 | | - "indent": [ |
56 | | - "error", |
57 | | - "tab" |
58 | | - ], |
59 | | - "key-spacing": [ |
60 | | - "error", |
61 | | - { |
62 | | - "afterColon": true, |
63 | | - "beforeColon": false |
64 | | - } |
65 | | - ], |
66 | | - "keyword-spacing": [ |
67 | | - "error", |
68 | | - { |
69 | | - "before": true |
70 | | - } |
71 | | - ], |
72 | | - "no-console": "off", |
73 | | - "no-else-return": "error", |
74 | | - "no-empty": "error", |
75 | | - "no-empty-function": "error", |
76 | | - "no-eval": "error", |
77 | | - "no-extra-bind": "error", |
78 | | - "no-extra-parens": "error", |
79 | | - "no-invalid-this": "error", |
80 | | - "no-labels": "error", |
81 | | - "no-lone-blocks": "error", |
82 | | - "no-lonely-if": "error", |
83 | | - "no-loop-func": "error", |
84 | | - "no-new": "error", |
85 | | - "no-param-reassign": "error", |
86 | | - "no-self-compare": "error", |
87 | | - "no-trailing-spaces": "error", |
88 | | - "no-unused-expressions": "error", |
89 | | - "no-unused-vars": "warn", |
90 | | - "no-use-before-define": "error", |
91 | | - "no-useless-call": "error", |
92 | | - "no-useless-concat": "error", |
93 | | - "one-var": "error", |
94 | | - "one-var-declaration-per-line": [ |
95 | | - "error", |
96 | | - "always" |
97 | | - ], |
98 | | - "quotes": [ |
99 | | - "error", |
100 | | - "single" |
101 | | - ], |
102 | | - "radix": "error", |
103 | | - "semi": [ |
104 | | - "error", |
105 | | - "always" |
106 | | - ], |
107 | | - "space-before-blocks": [ |
108 | | - "error", |
109 | | - "always" |
110 | | - ], |
111 | | - "space-before-function-paren": [ |
112 | | - "error", |
113 | | - { |
114 | | - "anonymous": "always", |
115 | | - "named": "never" |
116 | | - } |
117 | | - ], |
118 | | - "space-in-parens": "error", |
119 | | - "space-infix-ops": "error", |
120 | | - "valid-jsdoc": "warn" |
121 | | - } |
| 2 | + "extends": "@neovici" |
122 | 3 | } |
0 commit comments