UNPKG

352 BJavaScriptView Raw
1/**
2 * @constant {Number} ERROR - A rule violation should break the build.
3 */
4module.exports.ERROR = 2;
5
6/**
7 * @constant {Number} WARNING - A rule violation should
8 * print a warning message but not fail a build.
9 */
10module.exports.WARNING = 1;
11
12/**
13 * @constant {Number} IGNORE - A rule should be explicitly ignored.
14 */
15module.exports.IGNORE = 0;