lint-staged
Version:
Lint files staged by git
14 lines (7 loc) • 303 B
JavaScript
import { blue, dim, green, red, yellow } from './colors.js'
export const wip = () => blue('⋯')
export const done = () => green('✔')
export const info = () => blue('→')
export const error = () => red('✖')
export const warning = () => yellow('⚠')
export const cancelled = () => dim('↓')