-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
95 lines (92 loc) · 2.68 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// @ts-check
import { fixupPluginRules } from "@eslint/compat";
import eslint from "@eslint/js";
import { createTypeScriptImportResolver } from "eslint-import-resolver-typescript";
import importPlugin from "eslint-plugin-import-x";
import react from "eslint-plugin-react";
import _eslintPluginReactHooks from "eslint-plugin-react-hooks";
import sisPlugin from "eslint-plugin-simple-import-sort";
import unusedImportsPlugin from "eslint-plugin-unused-imports";
import tseslint from "typescript-eslint";
const eslintPluginReactHooks = fixupPluginRules(
/** @type {import("@eslint/compat").FixupPluginDefinition} */ (_eslintPluginReactHooks)
);
const reactConfigs = {
...(react.configs.flat?.recommended ?? {}),
...(react.configs.flat?.["jsx-runtime"] ?? {}),
};
export default tseslint.config(
eslint.configs.recommended,
tseslint.configs.recommended,
reactConfigs,
{
files: ["**/*.{js,jsx,mjs,cjs,ts,tsx}"],
ignores: [
"**/node_modules/**",
"**/.next/**",
"**/out/**",
"**/dist/**",
"**/build/**",
"**/docs/static/*.js",
"*.json",
"*.code-workspace",
],
plugins: {
"import-x": importPlugin,
"simple-import-sort": sisPlugin,
"unused-imports": unusedImportsPlugin,
"react-hooks": eslintPluginReactHooks,
},
languageOptions: {
ecmaVersion: "latest",
sourceType: "module",
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
},
rules: {
"react/react-in-jsx-scope": "off",
"react/jsx-key": [
"error",
{
checkFragmentShorthand: true,
},
],
"react/require-render-return": "error",
"react/jsx-no-useless-fragment": "error",
"@typescript-eslint/no-empty-object-type": "off",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": [
"warn",
{
varsIgnorePattern: "^_",
argsIgnorePattern: "^_",
caughtErrorsIgnorePattern: "^_",
},
],
"@typescript-eslint/ban-ts-comment": "off",
"import-x/first": "error",
"import-x/newline-after-import": "error",
"import-x/no-duplicates": "error",
"simple-import-sort/imports": "warn",
"simple-import-sort/exports": "warn",
"unused-imports/no-unused-imports": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"no-unused-vars": "off",
},
settings: {
react: {
version: "detect",
},
"import-x/resolver-next": [
createTypeScriptImportResolver({
alwaysTryTypes: true,
project: "tsconfig.json",
}),
],
},
}
);