From bb11f57dfe53220f237bab104cc43478bf2181fd Mon Sep 17 00:00:00 2001 From: Wilmer Arambula Date: Tue, 5 May 2026 16:28:23 -0400 Subject: [PATCH] feat: add `.editorconfig-checker.json` in scaffold for baseline configuration. --- CHANGELOG.md | 1 + metadata/.github/linters/.editorconfig-checker.json | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 metadata/.github/linters/.editorconfig-checker.json diff --git a/CHANGELOG.md b/CHANGELOG.md index e6fba64..2902b8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,3 +12,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - feat: add `gitattributes` for metadata files and update `scaffold.json` references. - feat: update `.ecrc` and `.prettierignore` to include `scaffold-lock.json` for better file management. - feat: add `.editorconfig-checker.json` for improved linting configuration. +- feat: add `.editorconfig-checker.json` in scaffold for baseline configuration. diff --git a/metadata/.github/linters/.editorconfig-checker.json b/metadata/.github/linters/.editorconfig-checker.json new file mode 100644 index 0000000..bb0f71a --- /dev/null +++ b/metadata/.github/linters/.editorconfig-checker.json @@ -0,0 +1,11 @@ +{ + "Exclude": [ + "phpstan-baseline\\.neon$", + "^tests/runtime/", + "\\.min\\.css$", + "\\.min\\.js$", + "^vendor/", + "^runtime/", + "scaffold-lock\\.json$" + ] +}