blob: 868fd4bca8f11cc97ea1b72ed254e035297a84eb [file] [log] [blame]
Matteo Scandoloe3de73d2015-12-04 10:14:40 -08001{
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"],
Matteo Scandolo48d890f2015-12-14 17:36:09 -080019 "camelcase": [0, {"properties": "always"}],
Matteo Scandoloe3de73d2015-12-04 10:14:40 -080020 "no-underscore-dangle": 1,
21 "eqeqeq": [2, "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,
Matteo Scandolo0f5e1632015-12-09 16:09:59 -080032 "no-undef": 2,
Matteo Scandoloe3de73d2015-12-04 10:14:40 -080033
34 //"angular/ng_module_name": [2, '/^xos\.*[a-z]*$/'],
35 //"angular/ng_controller_name": [2, '/^[a-z].*Ctrl$/'],
36 //"angular/ng_service_name": [2, '/^[A-Z].*Service$/'],
37 //"angular/ng_directive_name": [2, '/^[a-z]+[[A-Z].*]*$/'],
38 //"angular/ng_di": [0, "function or array"]
39 },
40 "globals" :{
Matteo Scandolod9e1c412015-12-15 14:37:27 -080041 "angular": true,
42 "Chart": true
Matteo Scandoloe3de73d2015-12-04 10:14:40 -080043 }
44}