eslint-doc-generator
Version:
Automatic documentation generator for ESLint plugins and rules.
12 lines (11 loc) • 898 B
JavaScript
// Markers so that the rules table list can be automatically updated.
export const BEGIN_RULE_LIST_MARKER = '<!-- begin auto-generated rules list -->';
export const END_RULE_LIST_MARKER = '<!-- end auto-generated rules list -->';
// Marker so that rule doc header (title/notices) can be automatically updated.
export const END_RULE_HEADER_MARKER = '<!-- end auto-generated rule header -->';
// Markers so that the configs table list can be automatically updated.
export const BEGIN_CONFIG_LIST_MARKER = '<!-- begin auto-generated configs list -->';
export const END_CONFIG_LIST_MARKER = '<!-- end auto-generated configs list -->';
// Markers so that the rule options table list can be automatically updated.
export const BEGIN_RULE_OPTIONS_LIST_MARKER = '<!-- begin auto-generated rule options list -->';
export const END_RULE_OPTIONS_LIST_MARKER = '<!-- end auto-generated rule options list -->';