This commit is contained in:
Luiz Silva 2026-04-15 11:55:17 -03:00
parent 691387ff9a
commit 7a6d79fe12
16 changed files with 72 additions and 21 deletions

View file

@ -64,7 +64,7 @@ for (const file of files) {
const content = fs.readFileSync(file, 'utf8');
// Detecta se usa tab ou espaço
const indent = content.match(/^[ \t]+/m) ? content.match(/^[ \t]+/m)[0] : '\t';
const json = JSON.parse(content);
let changed = false;