-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
43 lines (42 loc) · 1.09 KB
/
eslint.config.js
File metadata and controls
43 lines (42 loc) · 1.09 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
const typescriptParser = require('@typescript-eslint/parser')
module.exports = [
{
files: ['packages/**/**/*.ts', 'packages/**/**/*.tsx'],
languageOptions: {
parser: typescriptParser,
ecmaVersion: 2020,
sourceType: 'module',
globals: {
// Node.js globals
global: 'readonly',
process: 'readonly',
Buffer: 'readonly',
console: 'readonly',
// Jest globals for test files
describe: 'readonly',
it: 'readonly',
expect: 'readonly',
beforeEach: 'readonly',
afterEach: 'readonly',
beforeAll: 'readonly',
afterAll: 'readonly',
jest: 'readonly',
},
},
rules: {
// Basic ESLint rules
'no-unused-vars': 'off', // Handled by TypeScript
'no-undef': 'off', // Handled by TypeScript
'no-dupe-class-members': 'off', // Allow method overloads
'no-constant-condition': ['error', { checkLoops: false }],
},
},
{
ignores: [
'**/dist/**',
'**/node_modules/**',
'**/coverage/**',
'eslint.config.js',
],
},
]