37 lines
940 B
JavaScript
37 lines
940 B
JavaScript
import { defineConfig, globalIgnores } from "eslint/config";
|
|
import nextVitals from "eslint-config-next/core-web-vitals";
|
|
import nextTs from "eslint-config-next/typescript";
|
|
|
|
const eslintConfig = defineConfig([
|
|
...nextVitals,
|
|
...nextTs,
|
|
// Override default ignores of eslint-config-next.
|
|
globalIgnores([
|
|
// Default ignores of eslint-config-next:
|
|
".next/**",
|
|
"out/**",
|
|
"build/**",
|
|
"coverage/**",
|
|
"next-env.d.ts",
|
|
"tailwind.config.*",
|
|
"postcss.config.*",
|
|
"orval.config.*",
|
|
]),
|
|
{
|
|
rules: {
|
|
// We intentionally prefix unused destructured props with "_" to avoid
|
|
// passing them to DOM elements (e.g. react-markdown's `node` prop).
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"warn",
|
|
{
|
|
argsIgnorePattern: "^_",
|
|
varsIgnorePattern: "^_",
|
|
caughtErrorsIgnorePattern: "^_",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
]);
|
|
|
|
export default eslintConfig;
|