-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy patheslint.config.js
More file actions
87 lines (86 loc) · 1.81 KB
/
Copy patheslint.config.js
File metadata and controls
87 lines (86 loc) · 1.81 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
import js from "@eslint/js";
import globals from "globals";
import reactHooks from "eslint-plugin-react-hooks";
import tseslint from "typescript-eslint";
export default tseslint.config(
{
ignores: [
"**/node_modules/**",
"**/dist/**",
"**/.vite/**",
"app/out/**",
"coverage/**",
".worktrees/**",
".claude/**",
"package-lock.json",
"app/package-lock.json",
"web/package-lock.json",
"*.jsonl",
"*-notebook.md",
],
},
js.configs.recommended,
...tseslint.configs.recommended,
{
files: ["**/*.{js,mjs,cjs,ts,tsx}"],
languageOptions: {
ecmaVersion: "latest",
sourceType: "module",
globals: {
...globals.es2026,
},
},
rules: {
"no-empty": ["error", { allowEmptyCatch: true }],
"no-control-regex": "off",
},
},
{
files: ["**/*.{js,mjs,cjs}"],
languageOptions: {
globals: {
...globals.node,
},
},
},
{
files: ["**/*.{ts,tsx}"],
rules: {
"no-undef": "off",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": [
"warn",
{
argsIgnorePattern: "^_",
caughtErrorsIgnorePattern: "^_",
ignoreRestSiblings: true,
varsIgnorePattern: "^_",
},
],
},
},
{
files: ["tests/**/*.ts"],
languageOptions: {
globals: {
...globals.node,
...globals.vitest,
},
},
},
{
files: ["app/src/preload/**/*.{ts,tsx}", "app/src/renderer/**/*.{ts,tsx}", "web/**/*.{ts,tsx}"],
languageOptions: {
globals: {
...globals.browser,
...globals.node,
},
},
plugins: {
"react-hooks": reactHooks,
},
rules: {
...reactHooks.configs.recommended.rules,
},
},
);