@textlint/kernel
Version:
textlint kernel is core logic by pure JavaScript.
14 lines • 360 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* TextLintMessage type
* @typedef {Object} MessageType
* @type {{lint: string, ignore: string}}
*/
exports.default = {
// Linting(also include Fix) Message Type
lint: "lint",
// Ignoring Message Type
ignore: "ignore"
};
//# sourceMappingURL=MessageType.js.map