]>
Commit | Line | Data |
---|---|---|
58906d77 RBR |
1 | { |
2 | "rules": { | |
3 | "indent": [ | |
4 | 2, | |
5 | 2 | |
6 | ], | |
7 | "quotes": [ | |
8 | 2, | |
9 | "single" | |
10 | ], | |
11 | "linebreak-style": [ | |
12 | 2, | |
13 | "unix" | |
14 | ], | |
15 | "semi": [ | |
16 | 2, | |
17 | "always" | |
18 | ], | |
19 | "no-trailing-spaces": [ | |
20 | 2, | |
21 | { | |
22 | "skipBlankLines": false | |
23 | } | |
24 | ], | |
25 | "eqeqeq": [ | |
26 | 2, | |
27 | "allow-null" | |
28 | ], | |
29 | "consistent-return": 2, | |
30 | "curly": 2, | |
31 | "dot-location": [2, "property"], | |
32 | "guard-for-in": 2, | |
33 | "no-extra-bind": 2 | |
34 | }, | |
35 | "env": { | |
36 | "es6": true, | |
37 | "node": true, | |
38 | "browser": true | |
39 | }, | |
40 | "extends": "eslint:recommended" | |
41 | } |