26 lines
530 B
JSON
26 lines
530 B
JSON
{
|
|
"rules": {
|
|
"comma-dangle": [
|
|
"error",
|
|
{
|
|
"arrays": "never",
|
|
"objects": "never",
|
|
"imports": "never",
|
|
"exports": "never",
|
|
"functions": "never"
|
|
}
|
|
]
|
|
},
|
|
"extends": [
|
|
"next",
|
|
"next/core-web-vitals",
|
|
"plugin:jsx-a11y/strict",
|
|
"prettier",
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react/recommended",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"plugins": ["@typescript-eslint", "react-hooks", "jsx-a11y"]
|
|
}
|