fix: Minimize the rule file

This commit is contained in:
Gabe
2025-10-01 22:46:55 +08:00
parent c993c15c92
commit d18b31692b
2 changed files with 3 additions and 3 deletions

View File

@@ -198,7 +198,7 @@ const RULES_MAP = {
export const BUILTIN_RULES = Object.entries(RULES_MAP)
.sort((a, b) => a[0].localeCompare(b[0]))
.map(([pattern, rule]) => ({
...DEFAULT_RULE,
// ...DEFAULT_RULE,
...rule,
pattern,
}));