2022-02-19 23:17:02 -05:00
|
|
|
{
|
2022-10-19 21:43:01 -05:00
|
|
|
"extends": ["next", "next/core-web-vitals", "plugin:prettier/recommended"],
|
2022-02-19 23:17:02 -05:00
|
|
|
"rules": {
|
2022-10-19 21:43:01 -05:00
|
|
|
"linebreak-style": ["error", "unix"],
|
|
|
|
"quotes": [
|
2022-07-12 17:09:57 -05:00
|
|
|
"error",
|
2022-10-19 21:43:01 -05:00
|
|
|
"single",
|
2022-07-12 17:09:57 -05:00
|
|
|
{
|
2022-10-19 21:43:01 -05:00
|
|
|
"avoidEscape": true
|
2022-07-12 17:09:57 -05:00
|
|
|
}
|
|
|
|
],
|
2022-10-19 21:43:01 -05:00
|
|
|
"semi": ["error", "always"],
|
|
|
|
"comma-dangle": ["error", "always-multiline"],
|
|
|
|
"jsx-quotes": ["error", "prefer-single"],
|
|
|
|
"indent": "off",
|
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
|
|
|
}
|
2022-10-19 21:43:01 -05:00
|
|
|
}
|