Skip to content

Commit d7b069d

Browse files
committedJul 10, 2024
fix: avoid using name in ignores
1 parent 633a471 commit d7b069d

File tree

3 files changed

+235
-206
lines changed

3 files changed

+235
-206
lines changed
 

‎package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@antfu/eslint-config",
33
"type": "module",
44
"version": "2.22.0-beta.3",
5-
"packageManager": "pnpm@9.4.0",
5+
"packageManager": "pnpm@9.5.0",
66
"description": "Anthony's ESLint config",
77
"author": "Anthony Fu <anthonyfu117@hotmail.com> (https://github.com/antfu/)",
88
"license": "MIT",
@@ -101,14 +101,14 @@
101101
"@stylistic/eslint-plugin": "^2.6.0-beta.0",
102102
"@typescript-eslint/eslint-plugin": "8.0.0-alpha.40",
103103
"@typescript-eslint/parser": "8.0.0-alpha.40",
104-
"eslint-config-flat-gitignore": "^0.1.6",
104+
"eslint-config-flat-gitignore": "^0.1.7",
105105
"eslint-flat-config-utils": "^0.2.5",
106106
"eslint-merge-processors": "^0.1.0",
107107
"eslint-plugin-antfu": "^2.3.4",
108108
"eslint-plugin-command": "^0.2.3",
109109
"eslint-plugin-eslint-comments": "^3.2.0",
110110
"eslint-plugin-import-x": "^0.5.3",
111-
"eslint-plugin-jsdoc": "^48.5.2",
111+
"eslint-plugin-jsdoc": "^48.6.0",
112112
"eslint-plugin-jsonc": "^2.16.0",
113113
"eslint-plugin-markdown": "^5.0.0",
114114
"eslint-plugin-n": "^17.9.0",
@@ -144,14 +144,14 @@
144144
"@types/node": "^20.14.10",
145145
"@types/prompts": "^2.4.9",
146146
"@types/yargs": "^17.0.32",
147-
"@unocss/eslint-plugin": "^0.61.2",
147+
"@unocss/eslint-plugin": "^0.61.3",
148148
"astro-eslint-parser": "^1.0.2",
149149
"bumpp": "^9.4.1",
150150
"eslint": "npm:eslint-ts-patch@9.5.0-0",
151-
"eslint-plugin-astro": "^1.2.2",
151+
"eslint-plugin-astro": "^1.2.3",
152152
"eslint-plugin-format": "^0.1.2",
153153
"eslint-plugin-react-hooks": "^4.6.2",
154-
"eslint-plugin-react-refresh": "^0.4.7",
154+
"eslint-plugin-react-refresh": "^0.4.8",
155155
"eslint-plugin-solid": "^0.14.1",
156156
"eslint-plugin-svelte": "^2.41.0",
157157
"eslint-ts-patch": "9.5.0-0",
@@ -163,14 +163,14 @@
163163
"lint-staged": "^15.2.7",
164164
"prettier-plugin-astro": "^0.14.0",
165165
"prettier-plugin-slidev": "^1.0.5",
166-
"rimraf": "^5.0.8",
166+
"rimraf": "^6.0.0",
167167
"simple-git-hooks": "^2.11.1",
168168
"svelte": "^4.2.18",
169169
"svelte-eslint-parser": "^0.39.2",
170170
"tsup": "^8.1.0",
171171
"tsx": "^4.16.2",
172172
"typescript": "^5.5.3",
173-
"vitest": "^1.6.0",
173+
"vitest": "^2.0.1",
174174
"vue": "^3.4.31"
175175
},
176176
"resolutions": {

‎pnpm-lock.yaml

+227-197
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/configs/ignores.ts

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export async function ignores(): Promise<TypedFlatConfigItem[]> {
55
return [
66
{
77
ignores: GLOB_EXCLUDE,
8-
name: 'antfu/ignores',
98
},
109
]
1110
}

0 commit comments

Comments
 (0)
Please sign in to comment.