import {maxLength} from '@commitlint/ensure'; import {SyncRule} from '@commitlint/types'; export const scopeMaxLength: SyncRule<number> = ( parsed, _when = undefined, value = 0 ) => { const input = parsed.scope; if (!input) { return [true]; } return [ maxLength(input, value), `scope must not be longer than ${value} characters`, ]; };