mirror of
https://github.com/XFox111/my-website.git
synced 2026-04-22 07:28:01 +03:00
38 lines
644 B
JavaScript
38 lines
644 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,
|
|
globalIgnores([
|
|
".next/**",
|
|
"out/**",
|
|
"build/**",
|
|
"next-env.d.ts"
|
|
]),
|
|
{
|
|
rules:
|
|
{
|
|
"@typescript-eslint/no-explicit-any": ["off"],
|
|
"@typescript-eslint/no-unused-vars": ["warn"],
|
|
"indent": [
|
|
"warn",
|
|
"tab",
|
|
{
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"double"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
}
|
|
}
|
|
]);
|
|
export default eslintConfig;
|