fix: temp disable yml linting

This commit is contained in:
Brian Madison
2025-06-17 15:31:58 -05:00
parent 8b9bda5639
commit 296c2fbcbd

View File

@@ -14,7 +14,7 @@
"list:agents": "node tools/cli.js list:agents", "list:agents": "node tools/cli.js list:agents",
"validate": "node tools/cli.js validate", "validate": "node tools/cli.js validate",
"install:bmad": "node tools/installer/bin/bmad.js install", "install:bmad": "node tools/installer/bin/bmad.js install",
"format": "prettier --write \"**/*.md\" && node tools/yaml-format.js **/*.md **/*.yml **/*.yaml .roo/.roomodes", "format": "prettier --write \"**/*.md\"",
"version:patch": "node tools/version-bump.js patch", "version:patch": "node tools/version-bump.js patch",
"version:minor": "node tools/version-bump.js minor", "version:minor": "node tools/version-bump.js minor",
"version:major": "node tools/version-bump.js major", "version:major": "node tools/version-bump.js major",
@@ -60,20 +60,8 @@
"yaml-lint": "^1.7.0" "yaml-lint": "^1.7.0"
}, },
"lint-staged": { "lint-staged": {
"**/*.{yml,yaml}": [
"node tools/yaml-format.js"
],
"**/*.md": [ "**/*.md": [
"prettier --write" "prettier --write"
],
".roomodes": [
"node tools/yaml-format.js"
],
"bmad-core/**/*.yml": [
"node tools/yaml-format.js"
],
".github/**/*.yml": [
"node tools/yaml-format.js"
] ]
} }
} }