svg-color-linter
Version:
Linting tool to check if SVG files use only colors of a given color palette
14 lines (13 loc) • 343 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.flags = void 0;
const flags = {
string: 'config',
boolean: ['version', 'help'],
alias: { c: 'config', v: 'version', h: 'help' },
unknown: () => true,
default: { lang: 'en' },
'--': true,
stopEarly: true,
};
exports.flags = flags;