crabfit/frontend/.eslintrc.json
2023-05-24 22:17:08 +10:00

33 lines
836 B
JSON

{
"extends": ["next/core-web-vitals", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "simple-import-sort"],
"rules": {
"react/no-unescaped-entities": "off",
"simple-import-sort/imports": "warn",
"@next/next/no-img-element": "off",
"react/display-name": "off",
"react-hooks/exhaustive-deps": "off",
"space-infix-ops": "warn",
"comma-spacing": "warn",
"react-hooks/rules-of-hooks": "off"
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"rules": {
"simple-import-sort/imports": [
"warn",
{
"groups": [
["^react", "^next", "^@", "^[a-z]"],
["^/src/"],
["^./", "^.", "^../"]
]
}
]
}
}
]
}