UNPKG

eslint-nibble

Version:

Ease into ESLint, by fixing one rule at a time

19 lines (17 loc) 286 B
const colors = { error: 'red', warning: 'yellow', }; const icons = { error: '✘', warning: '⚠', }; const severities = { 1: 'warning', 2: 'error', }; const bgColors = { error: 'bgRed', warning: 'bgYellow', }; module.exports = { bgColors, colors, icons, severities };