Skip to content

Commit 3b6c75e

Browse files
chore(deps): bump all dependencies to latest and update linting config (#37)
* chore(deps): bump all dependencies * chore: update github linting config after new major version of the plugin
1 parent d837c95 commit 3b6c75e

File tree

3 files changed

+1244
-879
lines changed

3 files changed

+1244
-879
lines changed

.github/linters/eslint.config.mjs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import jest from 'eslint-plugin-jest'
2+
import github from 'eslint-plugin-github'
23
import globals from 'globals'
34
import babelParser from '@babel/eslint-parser'
45
import path from 'node:path'
@@ -18,11 +19,8 @@ export default [
1819
{
1920
ignores: ['node_modules/', 'dist/', 'coverage/', '*.json']
2021
},
21-
...compat.extends(
22-
'eslint:recommended',
23-
'plugin:github/recommended',
24-
'plugin:jest/recommended'
25-
),
22+
...compat.extends('eslint:recommended', 'plugin:jest/recommended'),
23+
github.getFlatConfigs().recommended,
2624
{
2725
plugins: {
2826
jest
@@ -53,7 +51,7 @@ export default [
5351
},
5452

5553
rules: {
56-
'filenames/match-regex': 'off',
54+
'github/filenames-match-regex': 'off',
5755
camelcase: 'off',
5856
'eslint-comments/no-use': 'off',
5957
'eslint-comments/no-unused-disable': 'off',

0 commit comments

Comments
 (0)