mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-05 02:12:36 +01:00
[mv3] Indent rulesets with fewer rules
This commit is contained in:
parent
88d9064a30
commit
8d47eac6e6
@ -89,9 +89,10 @@ async function main() {
|
||||
afterRule.id = ruleIdGenerator++;
|
||||
}
|
||||
afterRules.sort((a, b) => a.id - b.id);
|
||||
const indent = afterRules.length > 10 ? undefined : 1;
|
||||
const lines = [];
|
||||
for ( const afterRule of afterRules ) {
|
||||
lines.push(JSON.stringify(afterRule));
|
||||
lines.push(JSON.stringify(afterRule, null, indent));
|
||||
}
|
||||
writePromises.push(
|
||||
fs.writeFile(
|
||||
|
Loading…
Reference in New Issue
Block a user