12 lines
295 B
JSON
12 lines
295 B
JSON
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"project": "./tsconfig.json"
|
||
|
},
|
||
|
"plugins": ["@typescript-eslint"],
|
||
|
"extends": ["next/core-web-vitals", "plugin:@typescript-eslint/recommended"],
|
||
|
"rules": {
|
||
|
"@typescript-eslint/consistent-type-imports": "warn"
|
||
|
}
|
||
|
}
|