-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy patheslint.config.mjs
More file actions
89 lines (87 loc) · 2.73 KB
/
eslint.config.mjs
File metadata and controls
89 lines (87 loc) · 2.73 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
81
82
83
84
85
86
87
88
import js from "@eslint/js";
import typescript from "@typescript-eslint/eslint-plugin";
import typescriptParser from "@typescript-eslint/parser";
import react from "eslint-plugin-react";
import reactHooks from "eslint-plugin-react-hooks";
import reactRefresh from "eslint-plugin-react-refresh";
import prettier from "eslint-plugin-prettier";
import prettierConfig from "eslint-config-prettier";
import simpleImportSort from "eslint-plugin-simple-import-sort";
import globals from "globals";
export default [
{
ignores: [
".next/**",
"node_modules/**",
"dist/**",
"build/**",
".next/**",
],
},
js.configs.recommended,
{
files: ["**/*.{js,jsx,ts,tsx}"],
languageOptions: {
parser: typescriptParser,
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
ecmaFeatures: {
jsx: true,
},
},
globals: {
...globals.browser,
...globals.node,
...globals.es2021,
},
},
plugins: {
react,
"react-hooks": reactHooks,
"react-refresh": reactRefresh,
"@typescript-eslint": typescript,
prettier,
"simple-import-sort": simpleImportSort,
},
rules: {
...react.configs.recommended.rules,
...reactHooks.configs.recommended.rules,
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"react-refresh/only-export-components": [
"warn",
{ allowConstantExport: true },
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
// Ignore parameters in type definitions (interfaces, type aliases)
args: "none", // Don't check function arguments at all - TypeScript handles this
// Only check variables, not parameters
ignoreRestSiblings: true,
},
],
// Use the base no-unused-vars rule for variables, but let TypeScript handle parameters
"no-unused-vars": "off", // Turn off base rule, use TypeScript-specific rule
"@typescript-eslint/no-explicit-any": "warn",
"no-console": ["warn", { allow: ["warn", "error"] }],
"react/no-unescaped-entities": "off",
"no-undef": "off", // TypeScript handles this
"react/jsx-uses-react": "off", // Not needed in React 17+
"prettier/prettier": "warn",
"no-dupe-keys": "warn", // Allow duplicate keys (they may be intentional overrides)
"no-empty": ["warn", { allowEmptyCatch: true }], // Allow empty catch blocks
"simple-import-sort/imports": "warn",
"simple-import-sort/exports": "warn",
...prettierConfig.rules,
},
settings: {
react: {
version: "detect",
},
},
},
];