39 строки
1021 B
JSON
39 строки
1021 B
JSON
{
|
|
"extends": "airbnb",
|
|
"env": {
|
|
"webextensions": true,
|
|
"browser": true
|
|
},
|
|
"plugins": ["react"],
|
|
"parser": "babel-eslint",
|
|
"rules": {
|
|
"object-curly-newline": ["error", {"consistent": true}],
|
|
"object-curly-spacing": ["off"],
|
|
"no-plusplus": ["off"],
|
|
"prefer-destructuring": ["off"],
|
|
"no-restricted-syntax": ["off"],
|
|
"no-use-before-define": ["error", {"functions": false}],
|
|
"no-prototype-builtins": ["off"],
|
|
"class-methods-use-this": ["off"],
|
|
"no-continue": ["off"],
|
|
|
|
"import/no-duplicates": ["off"],
|
|
"import/prefer-default-export": ["off"],
|
|
|
|
"react/jsx-one-expression-per-line": ["off"],
|
|
"react/prefer-stateless-function": ["off"],
|
|
"react/no-multi-comp": ["off"],
|
|
"react/destructuring-assignment": ["off"],
|
|
|
|
"jsx-a11y/click-events-have-key-events": ["off"],
|
|
"jsx-a11y/no-static-element-interactions": ["off"]
|
|
},
|
|
"settings": {
|
|
"import/resolver": {
|
|
"webpack": {
|
|
"config": "webpack/dev.config.js"
|
|
}
|
|
}
|
|
}
|
|
}
|