Skip to content

Commit 1755989

Browse files
committedAug 8, 2024·
Upgraded to eslint 9.8
1 parent 1169d81 commit 1755989

File tree

5 files changed

+426
-169
lines changed

5 files changed

+426
-169
lines changed
 

‎.eslintignore

-2
This file was deleted.

‎.eslintrc.json

-44
This file was deleted.

‎eslint.config.js

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
const { configs } = require('@eslint/js');
2+
const jest = require('eslint-plugin-jest');
3+
const globals = require('globals');
4+
5+
module.exports = [
6+
configs.recommended,
7+
{
8+
languageOptions: {
9+
ecmaVersion: 'latest',
10+
sourceType: 'commonjs',
11+
globals: { ...globals.node, Atomics: 'readonly', SharedArrayBuffer: 'readonly' }
12+
},
13+
rules: {
14+
semi: 'error',
15+
quotes: ['error', 'single'],
16+
indent: ['error', 4, { 'SwitchCase': 1 }],
17+
'no-unused-vars':
18+
[
19+
'warn',
20+
{
21+
'varsIgnorePattern': '^_',
22+
'args': 'after-used',
23+
'argsIgnorePattern': '^_'
24+
}
25+
]
26+
},
27+
ignores: ['coverage/', 'conf/']
28+
},
29+
{
30+
files: ['test/*.js'],
31+
...jest.configs['flat/recommended'],
32+
rules: {
33+
...jest.configs['flat/recommended'].rules
34+
}
35+
}
36+
];

0 commit comments

Comments
 (0)
Please sign in to comment.