open-code-review/internal/config/allowlist/default_exclude_patterns.json
Lei Zhang 95c5d5930e
feat: Add HarmonyOS support for .ets files and review configurations (#48)
* feat: add .ets file extension support for HarmonyOS development

* feat: add complete HarmonyOS review support with ArkTS rules, .json5 config, and oh_modules exclusion

- Add arkts.md rule doc with ArkTS-specific and TypeScript general checks
- Add .json5 to supported file types for HarmonyOS config files
- Map .json5 to json.md rules in system_rules.json
- Exclude oh_modules/** (HarmonyOS dependency dir) from review
- Exclude *.test.ets (HarmonyOS test files) from review
- Add unit tests for all new extensions and patterns

* refactor: merge json and json5 glob patterns into single brace expansion
2026-06-05 12:22:11 +08:00

18 lines
374 B
JSON

[
"**/*_test.go",
"**/src/test/java/**/*.java",
"**/src/test/**/*.kt",
"**/*.test.{js,jsx,ts,tsx}",
"**/*.spec.{js,jsx,ts,tsx}",
"**/__tests__/**",
"**/test/**/*_test.py",
"**/tests/**/*_test.py",
"**/*_test.py",
"**/*_spec.rb",
"**/spec/**/*_spec.rb",
"**/*Test.java",
"**/*Tests.java",
"**/*_test.rs",
"**/oh_modules/**",
"**/*.test.ets"
]