2022-02-19 23:17:02 -05:00
|
|
|
{
|
2023-03-21 19:53:22 -05:00
|
|
|
"root": true,
|
|
|
|
"extends": [
|
|
|
|
"next",
|
|
|
|
"next/core-web-vitals",
|
|
|
|
"plugin:prettier/recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended"
|
|
|
|
],
|
|
|
|
"plugins": ["unused-imports", "@typescript-eslint"],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
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",
|
2023-03-21 19:53:22 -05:00
|
|
|
"react/display-name": "off",
|
|
|
|
"no-unused-vars": "off",
|
|
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
|
|
"unused-imports/no-unused-imports": "error",
|
|
|
|
"unused-imports/no-unused-vars": [
|
|
|
|
"error",
|
|
|
|
{ "vars": "all", "varsIgnorePattern": "^_", "args": "after-used", "argsIgnorePattern": "^_" }
|
|
|
|
],
|
|
|
|
"@typescript-eslint/ban-ts-comment": "off"
|
2022-02-19 23:17:02 -05:00
|
|
|
}
|
2022-10-19 21:43:01 -05:00
|
|
|
}
|