2016-10-30 10:57:12 +00:00
|
|
|
{
|
2021-04-08 15:37:09 +00:00
|
|
|
"extends": [
|
|
|
|
"airbnb",
|
|
|
|
"airbnb/hooks"
|
|
|
|
],
|
2016-10-30 10:57:12 +00:00
|
|
|
"env": {
|
|
|
|
"node": true,
|
2023-02-16 15:40:09 +00:00
|
|
|
"browser": true
|
2016-10-30 10:57:12 +00:00
|
|
|
},
|
|
|
|
"rules": {
|
2020-02-21 09:37:36 +00:00
|
|
|
"max-len": 0,
|
2020-03-04 11:05:05 +00:00
|
|
|
"import/no-extraneous-dependencies": ["error", {
|
|
|
|
"devDependencies": true,
|
|
|
|
"optionalDependencies": false
|
|
|
|
}],
|
2018-09-30 20:08:36 +00:00
|
|
|
"no-console": 0,
|
2019-01-28 17:09:54 +00:00
|
|
|
"jsx-a11y/click-events-have-key-events": 0,
|
2020-02-16 04:33:38 +00:00
|
|
|
"jsx-a11y/interactive-supports-focus": 0,
|
2020-02-11 15:55:43 +00:00
|
|
|
"react/jsx-one-expression-per-line": 0,
|
2020-02-14 04:06:15 +00:00
|
|
|
"object-curly-newline": 0,
|
|
|
|
"arrow-parens": 0,
|
|
|
|
"jsx-a11y/control-has-associated-label": 0,
|
2021-03-30 15:01:25 +00:00
|
|
|
"react/prop-types": 0,
|
2022-02-21 06:16:15 +00:00
|
|
|
"no-multiple-empty-lines": ["error", { "max": 2, "maxBOF": 0, "maxEOF": 0 }],
|
|
|
|
"no-promise-executor-return": 0,
|
|
|
|
"react/function-component-definition": 0
|
|
|
|
},
|
2022-03-28 06:28:17 +00:00
|
|
|
"parserOptions": {
|
2022-02-21 06:16:15 +00:00
|
|
|
"ecmaVersion": 2022
|
2020-02-14 04:06:15 +00:00
|
|
|
}
|
2016-10-30 10:57:12 +00:00
|
|
|
}
|