@infernodesign/eslint-config 2.0.0 → 2.1.0
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.js +1 -1
- package/dist/index.js +28 -19
- package/package.json +1 -1
package/dist/cli.js
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 = "2.
|
|
11
|
+
var version = "2.1.0";
|
|
12
12
|
//#endregion
|
|
13
13
|
//#region src/cli/constants.ts
|
|
14
14
|
const vscodeSettingsString = `
|
package/dist/index.js
CHANGED
|
@@ -102,48 +102,57 @@ const GLOB_ALL_SRC = [
|
|
|
102
102
|
GLOB_HTML
|
|
103
103
|
];
|
|
104
104
|
const GLOB_EXCLUDE = [
|
|
105
|
-
"
|
|
105
|
+
"**/.agents",
|
|
106
|
+
"**/.antigravity",
|
|
106
107
|
"**/.bmad",
|
|
107
|
-
"**/.
|
|
108
|
-
"**/.
|
|
108
|
+
"**/.context",
|
|
109
|
+
"**/.codex",
|
|
109
110
|
"**/.claude",
|
|
110
111
|
"**/.cursor",
|
|
112
|
+
"**/.windsurf",
|
|
113
|
+
"**/.*/skills",
|
|
114
|
+
"**/AGENTS.md",
|
|
115
|
+
"**/.idea",
|
|
116
|
+
"**/.vscode",
|
|
117
|
+
"**/.zed",
|
|
118
|
+
"**/__snapshots__",
|
|
119
|
+
"**/coverage",
|
|
120
|
+
"**/.cache",
|
|
111
121
|
"**/.eslintcache",
|
|
122
|
+
"**/.temp",
|
|
123
|
+
"**/.tmp",
|
|
124
|
+
"**/.vitepress/cache",
|
|
125
|
+
"**/temp",
|
|
126
|
+
"**/tmp",
|
|
112
127
|
"**/.history",
|
|
113
|
-
"**/.idea",
|
|
114
128
|
"**/.next",
|
|
115
129
|
"**/.nuxt",
|
|
116
130
|
"**/.output",
|
|
117
131
|
"**/.svelte-kit",
|
|
118
|
-
"**/.temp",
|
|
119
|
-
"**/.tmp",
|
|
120
132
|
"**/.turbo",
|
|
121
133
|
"**/.vercel",
|
|
122
134
|
"**/.vite-inspect",
|
|
123
|
-
"**/.vitepress/cache",
|
|
124
|
-
"**/.vscode",
|
|
125
|
-
"**/.windsurf",
|
|
126
|
-
"**/.yarn",
|
|
127
135
|
"**/*.min.*",
|
|
128
136
|
"**/auto-import?(s).d.ts",
|
|
129
137
|
"**/build",
|
|
130
|
-
"**/bun.lock",
|
|
131
|
-
"**/bun.lockb",
|
|
132
|
-
"**/CHANGELOG*.md",
|
|
133
138
|
"**/components.d.ts",
|
|
134
|
-
"**/coverage",
|
|
135
139
|
"**/dist",
|
|
136
|
-
"**/LICENSE*",
|
|
137
140
|
"**/next-env.d.ts",
|
|
138
|
-
"**/node_modules",
|
|
139
141
|
"**/out",
|
|
140
142
|
"**/output",
|
|
143
|
+
"**/vite.config.*.timestamp-*",
|
|
144
|
+
"**/.changeset",
|
|
145
|
+
"**/.private",
|
|
146
|
+
"**/private",
|
|
147
|
+
"**/CHANGELOG*.md",
|
|
148
|
+
"**/LICENSE*.md",
|
|
149
|
+
"**/.yarn",
|
|
150
|
+
"**/bun.lock",
|
|
151
|
+
"**/bun.lockb",
|
|
141
152
|
"**/package-lock.json",
|
|
142
153
|
"**/pnpm-lock.yaml",
|
|
143
|
-
"**/
|
|
144
|
-
"**/tmp",
|
|
154
|
+
"**/node_modules",
|
|
145
155
|
"**/vendor",
|
|
146
|
-
"**/vite.config.*.timestamp-*",
|
|
147
156
|
"**/yarn.lock"
|
|
148
157
|
];
|
|
149
158
|
const GLOB_SEARCH_EXCLUDE = new Set([
|
package/package.json
CHANGED