@antfu/eslint-config 8.1.0 → 8.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.mjs CHANGED
@@ -8,7 +8,7 @@ import { cac } from "cac";
8
8
  import parse from "parse-gitignore";
9
9
  import { execSync } from "node:child_process";
10
10
  //#region package.json
11
- var version = "8.1.0";
11
+ var version = "8.1.1";
12
12
  //#endregion
13
13
  //#region src/cli/constants.ts
14
14
  const vscodeSettingsString = `
package/dist/index.mjs CHANGED
@@ -122,13 +122,17 @@ const GLOB_EXCLUDE = [
122
122
  "**/.output",
123
123
  "**/.vite-inspect",
124
124
  "**/.yarn",
125
- "**/vite.config.*.timestamp-*",
126
125
  "**/CHANGELOG*.md",
127
- "**/*.min.*",
128
126
  "**/LICENSE*",
127
+ "**/*.min.*",
129
128
  "**/__snapshots__",
129
+ "**/vite.config.*.timestamp-*",
130
130
  "**/auto-import?(s).d.ts",
131
- "**/components.d.ts"
131
+ "**/components.d.ts",
132
+ "**/.context",
133
+ "**/.claude",
134
+ "**/.agents",
135
+ "**/.*/skills"
132
136
  ];
133
137
  //#endregion
134
138
  //#region src/utils.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@antfu/eslint-config",
3
3
  "type": "module",
4
- "version": "8.1.0",
4
+ "version": "8.1.1",
5
5
  "description": "Anthony's ESLint config",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com> (https://github.com/antfu/)",
7
7
  "license": "MIT",
@@ -185,7 +185,7 @@
185
185
  "typescript": "^6.0.2",
186
186
  "vitest": "^4.1.3",
187
187
  "vue": "^3.5.32",
188
- "@antfu/eslint-config": "8.1.0"
188
+ "@antfu/eslint-config": "8.1.1"
189
189
  },
190
190
  "resolutions": {
191
191
  "@eslint-community/eslint-utils": "catalog:peer",