33 lines
849 B
TypeScript
33 lines
849 B
TypeScript
/** @type {import("eslint").Linter.Config} */
|
|
module.exports = {
|
|
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: {
|
|
"import/no-anonymous-default-export": ["off"],
|
|
"@typescript-eslint/no-unsafe-assignment": ["error"],
|
|
"@typescript-eslint/no-empty-interface": ["warn"],
|
|
"@typescript-eslint/consistent-type-imports": [
|
|
"warn",
|
|
{
|
|
prefer: "type-imports",
|
|
fixStyle: "inline-type-imports",
|
|
},
|
|
],
|
|
},
|
|
};
|