UNPKG

textlint

Version:

The pluggable linting tool for natural language.

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, warning: 1, error: 2, info: 3 };