mirror of
https://github.com/AykutSarac/jsoncrack.com.git
synced 2025-01-12 19:02:53 +08:00
18 lines
381 B
JSON
18 lines
381 B
JSON
{
|
|
"rules": {
|
|
"@next/next/no-img-element": "off"
|
|
},
|
|
"extends": ["next/core-web-vitals"],
|
|
"plugins": ["testing-library"],
|
|
"overrides": [
|
|
// Only uses Testing Library lint rules in test files
|
|
{
|
|
"files": [
|
|
"**/__tests__/**/*.[jt]s?(x)",
|
|
"**/?(*.)+(spec|test).[jt]s?(x)"
|
|
],
|
|
"extends": ["plugin:testing-library/react"]
|
|
}
|
|
]
|
|
}
|