Matteo Scandolo | c7987cd | 2016-04-12 11:38:40 -0700 | [diff] [blame] | 1 | { |
| 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 | }, |
Matteo Scandolo | c7987cd | 2016-04-12 11:38:40 -0700 | [diff] [blame] | 14 | "rules": { |
| 15 | "quotes": [2, "single"], |
| 16 | "camelcase": [0, {"properties": "always"}], |
Matteo Scandolo | 4ac9a0b | 2016-05-23 15:31:25 -0700 | [diff] [blame] | 17 | "no-underscore-dangle": 0, |
Matteo Scandolo | c7987cd | 2016-04-12 11:38:40 -0700 | [diff] [blame] | 18 | "eqeqeq": [2, "smart"], |
| 19 | "no-alert": 1, |
| 20 | "key-spacing": [1, { "beforeColon": false, "afterColon": true }], |
| 21 | "indent": [2, 2], |
| 22 | "no-irregular-whitespace": 1, |
| 23 | "eol-last": 0, |
Matteo Scandolo | c7987cd | 2016-04-12 11:38:40 -0700 | [diff] [blame] | 24 | "comma-spacing": [1, {"before": false, "after": true}], |
| 25 | "no-trailing-spaces": [1, { skipBlankLines: true }], |
| 26 | "no-unused-vars": [1, {"vars": "all", "args": "after-used"}], |
| 27 | "new-cap": 0, |
Matteo Scandolo | b585d38 | 2016-06-15 14:53:33 -0700 | [diff] [blame] | 28 | "no-multiple-empty-lines": 2, |
Matteo Scandolo | c7987cd | 2016-04-12 11:38:40 -0700 | [diff] [blame] | 29 | }, |
| 30 | "globals" :{ |
| 31 | "angular": true |
| 32 | } |
| 33 | } |