Skip to content

Commit 256cb2f

Browse files
committed
Updating all dev-dependencies
1 parent e16f1fb commit 256cb2f

File tree

8 files changed

+3527
-2616
lines changed

8 files changed

+3527
-2616
lines changed

.github/linters/.eslintrc.yml

Lines changed: 0 additions & 83 deletions
This file was deleted.

.github/linters/eslint.config.mjs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import globals from 'globals'
2+
import pluginJs from '@eslint/js'
3+
import tseslint from 'typescript-eslint'
4+
5+
/** @type {import('eslint').Linter.Config[]} */
6+
export default [
7+
{ files: ['**/*.{js,mjs,cjs,ts}'] },
8+
{ languageOptions: { globals: globals.node } },
9+
{
10+
ignores: [
11+
'!.*',
12+
'**/node_modules/.*',
13+
'**/dist/',
14+
'**/coverage/.*',
15+
'*.json'
16+
]
17+
},
18+
pluginJs.configs.recommended,
19+
...tseslint.configs.recommended
20+
]

0 commit comments

Comments
 (0)