mirror of
https://github.com/XFox111/my-website.git
synced 2026-04-22 07:28:01 +03:00
37 lines
663 B
JavaScript
37 lines
663 B
JavaScript
import { FlatCompat } from "@eslint/eslintrc";
|
|
import js from "@eslint/js";
|
|
|
|
const compat = new FlatCompat({
|
|
baseDirectory: import.meta.dirname,
|
|
recommendedConfig: js.configs.recommended
|
|
});
|
|
|
|
const eslintConfig =
|
|
[
|
|
...compat.config({
|
|
extends: ["eslint:recommended", "next/core-web-vitals", "next/typescript"],
|
|
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;
|