@terrazzo/parser
Version:
Parser/validator for the Design Tokens Community Group (DTCG) standard.
10 lines • 457 B
TypeScript
import type { LintRule } from '../../../types.js';
export declare const DUPLICATE_VALUES = "core/duplicate-values";
export interface RuleDuplicateValueOptions {
/** Token IDs to ignore. Supports globs (`*`). */
ignore?: string[];
}
declare const ERROR_DUPLICATE_VALUE = "ERROR_DUPLICATE_VALUE";
declare const rule: LintRule<typeof ERROR_DUPLICATE_VALUE, RuleDuplicateValueOptions>;
export default rule;
//# sourceMappingURL=duplicate-values.d.ts.map