mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 01:25:17 +01:00
37 lines
975 B
Plaintext
37 lines
975 B
Plaintext
|
{
|
||
|
"parser": "babel-eslint",
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es6": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"quotes": [2, "single"],
|
||
|
"eol-last": [0],
|
||
|
"no-mixed-requires": [0],
|
||
|
"no-underscore-dangle": [0],
|
||
|
"react/display-name": 1,
|
||
|
"react/jsx-boolean-value": 1,
|
||
|
"react/jsx-no-undef": 1,
|
||
|
"react/jsx-quotes": 1,
|
||
|
"react/jsx-sort-prop-types": 1,
|
||
|
"react/jsx-sort-props": 1,
|
||
|
"react/jsx-uses-react": 1,
|
||
|
"react/jsx-uses-vars": 1,
|
||
|
"react/no-did-mount-set-state": 1,
|
||
|
"react/no-did-update-set-state": 1,
|
||
|
"react/no-multi-comp": 1,
|
||
|
"react/no-unknown-property": 1,
|
||
|
"react/prop-types": 1,
|
||
|
"react/react-in-jsx-scope": 1,
|
||
|
"react/self-closing-comp": 1,
|
||
|
"react/sort-comp": 1,
|
||
|
"react/wrap-multilines": 1
|
||
|
},
|
||
|
"plugins": [
|
||
|
"react"
|
||
|
],
|
||
|
"ecmaFeatures": {
|
||
|
"jsx": true,
|
||
|
"modules": true
|
||
|
}
|
||
|
}
|