@next-vibe/checker 3.0.5 → 3.0.6
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/AGENTS.md +109 -71
- package/README.md +82 -133
- package/bin/package-runtime.js.map +3 -3
- package/bin/vibe-check.js +7 -1
- package/package.json +1 -1
package/bin/vibe-check.js
CHANGED
|
@@ -113611,6 +113611,7 @@ var init_widget_cli3 = __esm(async () => {
|
|
|
113611
113611
|
createMcpConfig: "Create MCP config (.mcp.json / mcp.json)?",
|
|
113612
113612
|
updateVscodeSettings: "Update VSCode settings (.vscode/settings.json)?",
|
|
113613
113613
|
updatePackageJson: "Update package.json scripts (check, lint, typecheck)?",
|
|
113614
|
+
enableEslint: "Enable ESLint? (import sorting, React hooks \u2014 slower but catches more)",
|
|
113614
113615
|
enableReactRules: "Enable React-specific linting rules?",
|
|
113615
113616
|
enableNextjsRules: "Enable Next.js-specific linting rules?",
|
|
113616
113617
|
enableI18nRules: "Enable i18n linting rules?",
|
|
@@ -113634,6 +113635,11 @@ var init_widget_cli3 = __esm(async () => {
|
|
|
113634
113635
|
label: STEP_LABELS.updatePackageJson,
|
|
113635
113636
|
defaultValue: true
|
|
113636
113637
|
},
|
|
113638
|
+
{
|
|
113639
|
+
key: "enableEslint",
|
|
113640
|
+
label: STEP_LABELS.enableEslint,
|
|
113641
|
+
defaultValue: true
|
|
113642
|
+
},
|
|
113637
113643
|
{
|
|
113638
113644
|
key: "enableReactRules",
|
|
113639
113645
|
label: STEP_LABELS.enableReactRules,
|
|
@@ -248332,4 +248338,4 @@ runCli({
|
|
|
248332
248338
|
getEndpoint
|
|
248333
248339
|
});
|
|
248334
248340
|
|
|
248335
|
-
//# debugId=
|
|
248341
|
+
//# debugId=7B018EC9C94644A264756E2164756E21
|