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

Function skip

script/check-md-table-padding.ts:40–46  ·  view source on GitHub ↗
(file: string)

Source from the content-addressed store, hash-verified

38}
39
40function skip(file: string) {
41 const norm = file.replaceAll('\\', '/').toLowerCase();
42 if (norm.startsWith('.changeset/')) return true;
43 if (norm === 'changelog.md' || norm.endsWith('/changelog.md')) return true;
44 if (norm.includes('node_modules/')) return true;
45 return false;
46}
47
48type Issue = { file: string; line: number; kind: 'separator' | 'content'; detail: string };
49

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected