forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.mjs
More file actions
83 lines (82 loc) · 2.6 KB
/
Copy patheslint.config.mjs
File metadata and controls
83 lines (82 loc) · 2.6 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
import { defineConfig } from 'eslint/config'
import tseslint from '@electron-toolkit/eslint-config-ts'
import eslintConfigPrettier from '@electron-toolkit/eslint-config-prettier'
import eslintPluginReact from 'eslint-plugin-react'
import eslintPluginReactHooks from 'eslint-plugin-react-hooks'
import eslintPluginReactRefresh from 'eslint-plugin-react-refresh'
export default defineConfig(
{
ignores: [
'**/node_modules',
'**/dist',
'**/out',
// Session scratch (gitignored) and vendored VAD runtime assets (copied by
// scripts/copy-vad-assets.mjs) — not shipped source.
'.playwright-mcp',
'src/renderer/public/vad'
]
},
tseslint.configs.recommended,
eslintPluginReact.configs.flat.recommended,
eslintPluginReact.configs.flat['jsx-runtime'],
{
settings: {
react: {
version: 'detect'
}
}
},
{
files: ['**/*.{ts,tsx}'],
plugins: {
'react-hooks': eslintPluginReactHooks,
'react-refresh': eslintPluginReactRefresh
},
rules: {
...eslintPluginReactHooks.configs.recommended.rules,
...eslintPluginReactRefresh.configs.vite.rules
}
},
{
// react-three-fiber intrinsics (<mesh>, <group>, position, args, intensity…)
// are not DOM elements/attributes, so the DOM-oriented react/no-unknown-property
// rule mis-flags them. Scope it off for the r3f render trees.
files: ['**/components/graph/**/*.tsx'],
rules: {
'react/no-unknown-property': 'off'
}
},
{
// Diagnostic scripts and test files don't benefit from explicit return-type
// annotations; the strictness is noise there. Shipped `.mjs` entry points
// (e.g. src/main/agentKernel/omi-mcp-entry.mjs) are plain JavaScript run
// verbatim by Node — they cannot carry a TS return-type annotation at all,
// so the rule is unsatisfiable there, not merely noisy.
files: [
'scripts/**/*.{ts,js,mjs,cjs}',
'tests/**/*.{ts,js,mjs,cjs}',
'src/**/*.{mjs,cjs}',
'**/*.test.{ts,tsx,mjs}'
],
rules: {
'@typescript-eslint/explicit-function-return-type': 'off'
}
},
{
// Honor the `_`-prefix convention for intentionally-unused bindings
// (discarded destructures, placeholder mock/callback params) so the linter
// stays green without scattered one-off disables.
rules: {
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_'
}
]
}
},
eslintConfigPrettier
)