-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc
More file actions
24 lines (24 loc) · 751 Bytes
/
.eslintrc
File metadata and controls
24 lines (24 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": ["next", "next/core-web-vitals", "plugin:react/recommended"],
"plugins": [
"@typescript-eslint",
"unused-imports",
"simple-import-sort",
"prettier"
],
"rules": {
"react/display-name": "off",
"prettier/prettier": ["error"],
"react/prop-types": "off",
"react/no-unescaped-entities": "off",
"react/react-in-jsx-scope": "off",
"no-unused-vars": "warn",
"unused-imports/no-unused-imports": "error",
"@typescript-eslint/ban-ts-comment": "warn",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@next/next/no-img-element": "off",
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"jsx-a11y/role-supports-aria-props": "off"
}
}