UNPKG

textlint

Version:

The pluggable linting tool for text and markdown.

14 lines (13 loc) 224 B
// LICENSE : MIT "use strict"; /** * Severity level * It is used in configuration and message * @typedef {Object} SeverityLevel */ export const SeverityLevel = { none: 0, info: 0, warning: 1, error: 2 };