mirror of
https://github.com/alibaba/open-code-review.git
synced 2026-07-09 17:28:58 +00:00
* 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
18 lines
374 B
JSON
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"
|
|
]
|