mirror of
https://github.com/Xevion/rdap.git
synced 2025-12-05 23:15:58 -06:00
23 lines
531 B
JSON
23 lines
531 B
JSON
{
|
|
"overrides": [
|
|
{
|
|
"extends": [
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking"
|
|
],
|
|
"files": ["*.ts", "*.tsx"],
|
|
"parserOptions": {
|
|
"project": "tsconfig.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"
|
|
}
|
|
}
|