-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheslint.config.mjs
More file actions
80 lines (78 loc) · 2.16 KB
/
eslint.config.mjs
File metadata and controls
80 lines (78 loc) · 2.16 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import nextPlugin from "@next/eslint-plugin-next";
import tseslint from "@typescript-eslint/eslint-plugin";
import importPlugin from "eslint-plugin-import";
import jsxA11y from "eslint-plugin-jsx-a11y";
import reactPlugin from "eslint-plugin-react";
import reactHooks from "eslint-plugin-react-hooks";
import nextParser from "eslint-config-next/parser.js";
const eslintConfig = [
{
ignores: [
"node_modules/**",
".next/**",
"apps/**/.next/**",
"apps/**/next-env.d.ts",
"out/**",
"build/**",
"docs/.vitepress/**",
"next-env.d.ts",
],
},
{
files: ["**/*.{js,jsx,mjs,cjs}"],
languageOptions: {
parser: nextParser,
parserOptions: {
requireConfigFile: false,
sourceType: "module",
allowImportExportEverywhere: true,
babelOptions: {
presets: ["next/babel"],
caller: {
supportsTopLevelAwait: true,
},
},
},
},
},
...tseslint.configs["flat/recommended"],
reactPlugin.configs.flat.recommended,
reactPlugin.configs.flat["jsx-runtime"],
reactHooks.configs["recommended-latest"],
jsxA11y.flatConfigs.recommended,
nextPlugin.flatConfig.coreWebVitals,
{
plugins: {
import: importPlugin,
},
settings: {
react: {
version: "detect",
},
},
rules: {
"import/no-anonymous-default-export": "warn",
"jsx-a11y/alt-text": [
"warn",
{
elements: ["img"],
img: ["Image"],
},
],
"jsx-a11y/aria-props": "warn",
"jsx-a11y/aria-proptypes": "warn",
"jsx-a11y/aria-unsupported-elements": "warn",
"jsx-a11y/role-has-required-aria-props": "warn",
"jsx-a11y/role-supports-aria-props": "warn",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-empty-object-type": "warn",
"@typescript-eslint/no-unused-expressions": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"react/jsx-no-target-blank": "off",
"react/no-unknown-property": "off",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
},
},
];
export default eslintConfig;