capsule-lint
Version:
The official Capsule linting package.
6 lines (5 loc) • 310 B
TypeScript
import { Rule } from 'htmlhint/types';
type HeadValidChildrenPossibleTags = 'base' | 'link' | 'meta' | 'noscript' | 'script' | 'style' | 'template' | 'title';
export type HeadValidChildrenOptions = HeadValidChildrenPossibleTags | HeadValidChildrenPossibleTags[];
declare const rule: Rule;
export default rule;