Enhance validation and quality standards; expand file globs for API, code quality, and documentation rules

This commit is contained in:
glenn schrooyen
2025-09-11 23:55:48 +02:00
parent 83fb444196
commit ec0a4f91c6
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
--- ---
description: API validation and service standards description: API validation and service standards
globs: ["services/**/*.java", "services/**/*.py", "services/**/*.js"] globs: ["services/**/*.java", "services/**/*.py", "services/**/*.js", "services/**/*.yml", "services/**/*.yaml", "services/**/*.xml", "services/**/*.json", "services/**/*.md", "services/**/Dockerfile*", "services/**/requirements.txt", "services/**/pom.xml"]
alwaysApply: false alwaysApply: false
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
description: Code quality standards and clean code principles description: Code quality standards and clean code principles
globs: ["**/*.java", "**/*.py", "**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] globs: ["**/*.java", "**/*.py", "**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx", "**/*.yml", "**/*.yaml", "**/*.xml", "**/*.json", "**/*.properties"]
alwaysApply: true alwaysApply: true
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
description: Documentation standards for LabFusion project description: Documentation standards for LabFusion project
globs: ["**/*.md", "**/README.md", "**/CLEAN_CODE.md", "**/RESILIENCE.md"] globs: ["**/*.md", "**/*.txt"]
alwaysApply: true alwaysApply: true
--- ---