-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
43 lines (41 loc) · 1.05 KB
/
eslint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { FlatCompat } from "@eslint/eslintrc";
import js from "@eslint/js";
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
import tseslint, { parser } from "typescript-eslint";
import url from "url";
const __dirname = url.fileURLToPath(new URL(".", import.meta.url));
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
});
export default [
...compat.extends(
// "next/core-web-vitals",
// "next/typescript",
"prettier"
),
...tseslint.configs.recommended,
eslintPluginPrettierRecommended,
{
languageOptions: {
parser: parser,
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
},
files: ["src/**/*.ts", "src/**/*.tsx"],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"max-len": ["error", { code: 120 }],
"prettier/prettier": [
"warn",
{},
{
usePrettierrc: true,
},
],
"react/no-unescaped-entities": "off",
},
},
];