-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheslint.config.js
More file actions
90 lines (89 loc) · 2.11 KB
/
eslint.config.js
File metadata and controls
90 lines (89 loc) · 2.11 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
89
90
import js from '@eslint/js';
import react from 'eslint-plugin-react';
import reactHooks from 'eslint-plugin-react-hooks';
import prettier from 'eslint-config-prettier';
export default [
js.configs.recommended,
{
files: ['**/*.{js,jsx}'],
plugins: {
react,
'react-hooks': reactHooks,
},
languageOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
globals: {
// Browser globals
window: 'readonly',
document: 'readonly',
console: 'readonly',
alert: 'readonly',
setTimeout: 'readonly',
clearTimeout: 'readonly',
setInterval: 'readonly',
clearInterval: 'readonly',
localStorage: 'readonly',
fetch: 'readonly',
ResizeObserver: 'readonly',
// Node globals
process: 'readonly',
__dirname: 'readonly',
__filename: 'readonly',
module: 'readonly',
require: 'readonly',
exports: 'readonly',
Buffer: 'readonly',
global: 'readonly',
},
},
settings: {
react: {
version: 'detect',
},
},
rules: {
'react/react-in-jsx-scope': 'off',
'react/prop-types': 'off',
'no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'no-console': ['warn', { allow: ['warn', 'error'] }],
'prefer-const': 'warn',
'no-var': 'error',
eqeqeq: ['error', 'always'],
curly: ['error', 'all'],
},
},
{
// Allow console.log in CLI files (bin/ and services/)
files: ['bin/**/*.js', 'services/**/*.js'],
rules: {
'no-console': 'off',
},
},
{
ignores: [
'**/node_modules/**',
'**/dist/**',
'**/dev-dist/**',
'**/build/**',
'**/coverage/**',
'**/.nyc_output/**',
'**/.vite/**',
'**/prisma/migrations/**',
'*.config.js',
'*.config.ts',
'*.min.js',
'package-lock.json',
'client/dist/**',
'server/dist/**',
'e2e/test-results/**',
'playwright-report/**',
],
},
prettier,
];