- Update all deps - Apply midwest changes - Convert all templates to JSX - Preact instead of Marko - Babel & Eslint
26 lines
359 B
Plaintext
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
|
|
}
|
|
}
|