blob: ac931f3496ba5c30de34890ef90c98370d1425f4 [file] [log] [blame]
Matteo Scandoloa3844ec2016-06-02 15:45:19 -07001{
2 "ecmaFeatures": {
3 "blockBindings": true,
4 "forOf": true,
5 "destructuring": true,
6 "arrowFunctions": true,
7 "templateStrings": true
8 },
9 "env": {
10 "browser": true,
11 "node": true,
12 "es6": true
13 },
14 "plugins": [
15 //"angular"
16 ],
17 "rules": {
18 "quotes": [2, "single"],
19 "camelcase": [0, {"properties": "always"}],
20 "no-underscore-dangle": 1,
21 "eqeqeq": [0, "smart"],
22 "no-alert": 1,
23 "key-spacing": [1, { "beforeColon": false, "afterColon": true }],
24 "indent": [2, 2],
25 "no-irregular-whitespace": 1,
26 "eol-last": 0,
27 "max-nested-callbacks": [2, 4],
28 "comma-spacing": [1, {"before": false, "after": true}],
29 "no-trailing-spaces": [1, { skipBlankLines: true }],
30 "no-unused-vars": [1, {"vars": "all", "args": "after-used"}],
31 "new-cap": 0,
32 "no-undef": 2,
33 },
34 "globals" :{
35 "angular": true,
36 "topojson": true,
37 "_": true
38 }
39}