]> git.wincent.com - hextrapolate.git/blob - .eslintrc
More setup, blinking light demo
[hextrapolate.git] / .eslintrc
1 {
2   "env": {
3     "browser": true
4   },
5   "parser": "babel-eslint",
6   "plugins": [
7     "react"
8   ],
9   "rules": {
10     // key: 0 = allow, 1 = warn, 2 = error
11     "comma-dangle": [0, "always-multiline"],
12     "no-process-exit": [0],
13     "no-underscore-dangle": [0],
14     "no-use-before-define": [0],
15     "quotes": [1, "single", "avoid-escape"],
16     "strict": [2, "global"]
17   }
18 }