2022-02-19 23:17:02 -05:00
|
|
|
{
|
2022-07-12 17:09:57 -05:00
|
|
|
"extends": [
|
|
|
|
"next",
|
|
|
|
"next/core-web-vitals"
|
|
|
|
],
|
2022-02-19 23:17:02 -05:00
|
|
|
"rules": {
|
2022-07-12 17:09:57 -05:00
|
|
|
"indent": [
|
|
|
|
"error",
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
"SwitchCase": 1
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"linebreak-style": [
|
|
|
|
"error",
|
|
|
|
"unix"
|
|
|
|
],
|
|
|
|
"quotes": [
|
|
|
|
"error",
|
|
|
|
"single"
|
|
|
|
],
|
|
|
|
"semi": [
|
|
|
|
"error",
|
|
|
|
"always"
|
|
|
|
],
|
|
|
|
"comma-dangle": [
|
|
|
|
"error",
|
|
|
|
"always-multiline"
|
|
|
|
],
|
|
|
|
"jsx-quotes": [
|
|
|
|
"error",
|
|
|
|
"prefer-single"
|
|
|
|
],
|
2022-02-19 23:17:02 -05:00
|
|
|
"react/prop-types": "off",
|
|
|
|
"react-hooks/rules-of-hooks": "off",
|
|
|
|
"react-hooks/exhaustive-deps": "off",
|
|
|
|
"react/jsx-uses-react": "warn",
|
|
|
|
"react/jsx-uses-vars": "warn",
|
|
|
|
"react/no-danger-with-children": "warn",
|
|
|
|
"react/no-deprecated": "warn",
|
|
|
|
"react/no-direct-mutation-state": "warn",
|
|
|
|
"react/no-is-mounted": "warn",
|
|
|
|
"react/no-typos": "error",
|
2022-07-06 11:57:39 -05:00
|
|
|
"react/react-in-jsx-scope": "off",
|
2022-02-19 23:17:02 -05:00
|
|
|
"react/require-render-return": "error",
|
|
|
|
"react/style-prop-object": "warn",
|
2022-07-12 17:09:57 -05:00
|
|
|
"@next/next/no-img-element": "off",
|
|
|
|
"jsx-a11y/alt-text": "off",
|
|
|
|
"react/display-name": "off"
|
2022-02-19 23:17:02 -05:00
|
|
|
}
|
|
|
|
}
|