2015-09-02 15:08:58 -04:00
|
|
|
{
|
|
|
|
"rules": {
|
|
|
|
"curly": [2, "multi-line"],
|
2015-09-09 09:53:48 -04:00
|
|
|
"eol-last": [2],
|
2015-09-02 15:08:58 -04:00
|
|
|
"indent": [2, 4],
|
|
|
|
"linebreak-style": [2, "unix"],
|
|
|
|
"max-len": [2, 120, 4],
|
2015-09-10 15:00:07 -04:00
|
|
|
"no-trailing-spaces": [2, { "skipBlankLines": true }],
|
|
|
|
"no-unused-vars": [2, {"args": "after-used", "varsIgnorePattern": "^_"}],
|
|
|
|
"quotes": [2, "single"],
|
2015-09-02 15:08:58 -04:00
|
|
|
"semi": [2, "always"],
|
2015-09-10 15:00:07 -04:00
|
|
|
"space-before-function-paren": [2, "always"],
|
|
|
|
"strict": [2, "never"]
|
2015-09-02 15:08:58 -04:00
|
|
|
},
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"node": true
|
|
|
|
},
|
2015-10-16 11:05:39 -04:00
|
|
|
"globals": {
|
|
|
|
"formatMessage": true
|
|
|
|
},
|
2015-09-02 15:08:58 -04:00
|
|
|
"ecmaFeatures": {
|
|
|
|
"jsx": true
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"react"
|
|
|
|
],
|
|
|
|
"extends": "eslint:recommended"
|
|
|
|
}
|