From 7dcd260067613de9b589d3a493c9cba1080eedd9 Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Sun, 22 Feb 2026 18:12:03 -0700 Subject: [PATCH] chore: Add `_experiment` directories to markdownlint, Prettier, and ESLint ignore lists. --- .markdownlint-cli2.yaml | 1 + .prettierignore | 3 +++ eslint.config.mjs | 1 + 3 files changed, 5 insertions(+) diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index c22ff4c5c..9fd8ffad6 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -7,6 +7,7 @@ ignores: - CODE_OF_CONDUCT.md - _bmad/** - _bmad*/** + - _experiment/** - .agent/** - .claude/** - .roo/** diff --git a/.prettierignore b/.prettierignore index 013380044..cc8bbaddd 100644 --- a/.prettierignore +++ b/.prettierignore @@ -8,5 +8,8 @@ CODE_OF_CONDUCT.md _bmad/ _bmad*/ +# Experiment folders +_experiment/ + # IDE integration folders (user-specific, not in repo) .junie/ diff --git a/eslint.config.mjs b/eslint.config.mjs index 23bf73aa5..c7adc67db 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -14,6 +14,7 @@ export default [ 'test/template-test-generator/**', 'test/fixtures/**', '_bmad*/**', + '_experiment/**', // Build output 'build/**', // Website uses ESM/Astro - separate linting ecosystem