Skip to content

Commit b933b5e

Browse files
committed
chore: deps
1 parent cb8b1a6 commit b933b5e

File tree

2 files changed

+13
-17
lines changed

2 files changed

+13
-17
lines changed

eslint.config.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
import { defineFlatConfig } from 'eslint-define-config';
2-
import { extend } from '@archoleat/eslint-flat-compatibility';
32
import globals from 'globals';
3+
import importPlugin from 'eslint-plugin-import';
44
import importSortPlugin from 'eslint-plugin-simple-import-sort';
55
import parser from '@typescript-eslint/parser';
66
import prettierConfig from 'eslint-config-prettier';
77
import unicornPlugin from 'eslint-plugin-unicorn';
88

99
export default defineFlatConfig([
10-
...extend('airbnb-base', 'airbnb-typescript/base'),
1110
{
1211
files: ['src/**/*.ts'],
1312
languageOptions: {
@@ -18,7 +17,6 @@ export default defineFlatConfig([
1817
},
1918
parserOptions: {
2019
ecmaVersion: 'latest',
21-
project: 'tsconfig.json',
2220
},
2321
sourceType: 'module',
2422
},
@@ -31,6 +29,7 @@ export default defineFlatConfig([
3129
},
3230
plugins: {
3331
'simple-import-sort': importSortPlugin,
32+
import: importPlugin,
3433
unicorn: unicornPlugin,
3534
},
3635
rules: {

package.json

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -47,35 +47,32 @@
4747
"init": "bun i && husky"
4848
},
4949
"peerDependencies": {
50-
"@commitlint/cli": "^19.0.0",
51-
"@commitlint/config-conventional": "^19.0.0",
52-
"@commitlint/types": "^19.0.0"
50+
"@commitlint/cli": "^19.0.0 || ^20.0.0",
51+
"@commitlint/config-conventional": "^19.0.0 || ^20.0.0",
52+
"@commitlint/types": "^19.0.0 || ^20.0.0"
5353
},
5454
"devDependencies": {
5555
"@archoleat/commitlint-define-config": "file:",
56-
"@archoleat/eslint-flat-compatibility": "^1.2.1",
5756
"@archoleat/prettier-define-config": "^1.2.1",
5857
"@archoleat/semantic-release-define-config": "^1.3.1",
59-
"@commitlint/cli": "^19.8.1",
60-
"@commitlint/config-conventional": "^19.8.1",
61-
"@commitlint/types": "^19.8.1",
58+
"@commitlint/cli": "^20.1.0",
59+
"@commitlint/config-conventional": "^20.0.0",
60+
"@commitlint/types": "^20.0.0",
6261
"@rollup/plugin-typescript": "^12.1.4",
6362
"@semantic-release/changelog": "^6.0.3",
6463
"@semantic-release/git": "^10.0.1",
6564
"@types/bun": "^1.2.21",
66-
"@typescript-eslint/eslint-plugin": "^7.18.0",
67-
"@typescript-eslint/parser": "^7.18.0",
65+
"@typescript-eslint/eslint-plugin": "^8.48.0",
66+
"@typescript-eslint/parser": "^8.48.0",
6867
"conventional-changelog-conventionalcommits": "^9.1.0",
6968
"editorconfig-checker": "^6.1.0",
70-
"eslint": "^8.57.1",
71-
"eslint-config-airbnb": "^19.0.4",
72-
"eslint-config-airbnb-typescript": "^18.0.0",
69+
"eslint": "^9.39.1",
7370
"eslint-config-prettier": "^10.1.8",
7471
"eslint-define-config": "^2.1.0",
7572
"eslint-import-resolver-typescript": "^4.4.4",
7673
"eslint-plugin-import": "^2.32.0",
7774
"eslint-plugin-simple-import-sort": "^12.1.1",
78-
"eslint-plugin-unicorn": "^61.0.1",
75+
"eslint-plugin-unicorn": "^62.0.0",
7976
"expect-type": "^1.2.2",
8077
"git-pull-run": "^1.6.2",
8178
"globals": "^16.3.0",
@@ -90,7 +87,7 @@
9087
"rollup": "^4.50.0",
9188
"rollup-plugin-dts": "^6.2.3",
9289
"rollup-plugin-esbuild": "^6.2.1",
93-
"semantic-release": "^24.2.7",
90+
"semantic-release": "^25.0.2",
9491
"tslib": "^2.8.1"
9592
}
9693
}

0 commit comments

Comments
 (0)