MCPcopy Create free account
hub / github.com/Kilo-Org/cloud / tracked

Function tracked

script/check-md-table-padding.ts:31–38  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

29const ok = new Set(['---', ':---', '---:', ':---:']);
30
31function tracked() {
32 const r = spawnSync('git', ['ls-files', '*.md'], { cwd: ROOT, encoding: 'utf8' });
33 if (r.status !== 0) {
34 console.error(r.stderr?.trim() || 'git ls-files failed');
35 process.exit(1);
36 }
37 return r.stdout.split('\n').filter(Boolean);
38}
39
40function skip(file: string) {
41 const norm = file.replaceAll('\\', '/').toLowerCase();

Callers 1

Calls 1

errorMethod · 0.65

Tested by

no test coverage detected