fix/chore: Update console.log for user-guide.md install path. Cleaned up config files/folders and updated .gitignore (#347)

* fix: Update console.log for user-guide.md install path

Changed
IMPORTANT: Please read the user guide installed at docs/user-guilde.md
to
IMPORTANT: Please read the user guide installed at .bmad-core/user-guide.md

WHY: the actual install location of the user-guide.md is in the .bmad-core directory.

* chore: remove formatting configs and clean up gitignore

- Delete husky pre-commit hook and prettier config files
- Remove VS Code chat/copilot settings
- Reorganize and clean up gitignore entries
This commit is contained in:
manjaroblack
2025-07-22 21:22:48 -05:00
committed by GitHub
parent bfaaa0ee11
commit 9afe4fbdaf
7 changed files with 28 additions and 9462 deletions

38
.gitignore vendored
View File

@@ -1,30 +1,44 @@
# Node modules # Dependencies
node_modules/ node_modules/
package-lock.json
pnpm-lock.yaml
bun.lock
deno.lock
# Logs # Logs
logs logs/
*.log *.log
npm-debug.log* npm-debug.log*
# Build output # Build output
build/*.txt build/*.txt
web-bundles/
# Environment variables
.env
# System files # System files
.DS_Store .DS_Store
Thumbs.db Thumbs.db
# Environment variables # Development tools and configs
.env .prettierignore
.prettierrc
.husky/
CLAUDE.md # IDE and editor configs
.ai/*
test-project-install/*
sample-project/*
.claude
.windsurf/ .windsurf/
.trae/ .trae/
.bmad*/.cursor/
# AI assistant files
CLAUDE.md
.ai/*
.claude
.gemini
# Project-specific
.bmad-core .bmad-core
.bmad-creator-tools .bmad-creator-tools
.gemini test-project-install/*
.bmad*/.cursor/ sample-project/*
web-bundles/

View File

@@ -1,2 +0,0 @@
# Run lint-staged to format and lint YAML files
npx lint-staged

View File

@@ -1,21 +0,0 @@
# Dependencies
node_modules/
package-lock.json
# Build outputs
dist/
# Generated files
*.log
*.lock
# BMad core files (have their own formatting)
bmad-core/**/*.md
# Specific files that need custom formatting
.roomodes
CHANGELOG.md
# IDE files
.vscode/
.idea/

View File

@@ -1,23 +0,0 @@
{
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"proseWrap": "preserve",
"endOfLine": "lf",
"overrides": [
{
"files": "*.md",
"options": {
"proseWrap": "preserve",
"printWidth": 120
}
}
]
}

View File

@@ -1,10 +1,4 @@
{ {
"chat.agent.enabled": true,
"chat.agent.maxRequests": 15,
"github.copilot.chat.agent.runTasks": true,
"chat.mcp.discovery.enabled": true,
"github.copilot.chat.agent.autoFix": true,
"chat.tools.autoApprove": false,
"cSpell.words": [ "cSpell.words": [
"Agentic", "Agentic",
"atlasing", "atlasing",
@@ -47,4 +41,4 @@
"Trae", "Trae",
"VNET" "VNET"
] ]
} }

9396
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -893,7 +893,7 @@ class Installer {
} }
// Important notice to read the user guide // Important notice to read the user guide
console.log(chalk.red.bold("\n📖 IMPORTANT: Please read the user guide installed at docs/user-guide.md")); console.log(chalk.red.bold("\n📖 IMPORTANT: Please read the user guide installed at .bmad-core/user-guide.md"));
console.log(chalk.red("This guide contains essential information about the BMad workflow and how to use the agents effectively.")); console.log(chalk.red("This guide contains essential information about the BMad workflow and how to use the agents effectively."));
} }