Files
weave-scope/client/.eslintrc
David Kaltschmidt 96aae9bc99 Migrate from Flux to Redux
* better state visibility
* pure state changes
* state debug panel (show: crtl-h, move: ctrl-w)
2016-04-27 17:21:46 +02:00

18 lines
337 B
Plaintext

{
"extends": "airbnb",
"env": {
"browser": true,
"jest": true,
"node": true
},
"rules": {
"comma-dangle": 0,
"no-param-reassign": 0,
"object-curly-spacing": 0,
"react/jsx-closing-bracket-location": 0,
"react/prefer-stateless-function": 0,
"react/sort-comp": 0,
"react/prop-types": 0
}
}