You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
43 lines
1.0 KiB
{
|
|
"extends": ["eslint-config-airbnb"],
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"parser": "babel-eslint",
|
|
"plugins": [
|
|
"react",
|
|
"babel"
|
|
],
|
|
"rules": {
|
|
"constructor-super": 2,
|
|
"comma-dangle": 0,
|
|
"func-names": 0,
|
|
"guard-for-in": 0,
|
|
"one-var": [2, { "initialized": "never" }],
|
|
"prefer-const": 0,
|
|
"key-spacing": 0,
|
|
"no-eq-null": 0,
|
|
"no-else-return": 0,
|
|
"no-param-reassign": 0,
|
|
"no-this-before-super": 2,
|
|
"no-undef": 2,
|
|
"no-unused-vars": [2, { "vars": "all", "args": "none" }],
|
|
"babel/object-shorthand": 0,
|
|
"react/jsx-boolean-value": 0,
|
|
"react/jsx-no-duplicate-props": 2,
|
|
"react/prop-types": [2, { "ignore": [ "children", "className", "style" ] }],
|
|
"react/sort-comp": 0,
|
|
"react/wrap-multilines": 0,
|
|
"react/no-multi-comp": 0,
|
|
"react/prop-types": 0,
|
|
"space-after-keywords": 0,
|
|
"space-before-blocks": 0,
|
|
"space-before-function-paren": 0,
|
|
"spaced-comment": 0,
|
|
"vars-on-top": 0
|
|
}
|
|
}
|
|
|