UNPKG

@maniascript/mslint

Version:
10 lines (9 loc) 240 B
import { Severity } from '../lib/linter/rule.js'; import { allRules } from '../lib/rules/index.js'; const rules = {}; for (const [ruleId] of allRules) { rules[ruleId] = Severity.Error; } export const all = Object.freeze({ rules });