pomodoro/client/.eslintrc
Linus Miller 47ce0a2a33 Huge commit
- Update all deps
 - Apply midwest changes
 - Convert all templates to JSX
 - Preact instead of Marko
 - Babel & Eslint
2016-11-10 14:34:44 +01:00

26 lines
359 B
Plaintext

{
"extends": [
"airbnb",
"../.eslintrc"
],
"rules": {
"react/react-in-jsx-scope": 0,
"react/prop-types": 0,
"react/no-unknown-property": 0,
"jsx-a11y/label-has-for": 0
},
"env": {
"browser": true
},
"globals": {
"ga": true,
"$": true,
"_": true,
"Backbone": true,
"INITIAL_CONTEXT": true
}
}