You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
439 B
19 lines
439 B
module.exports = checkListItemIndent |
|
|
|
function checkListItemIndent(context) { |
|
var style = context.options.listItemIndent || 'tab' |
|
|
|
if (style === 1 || style === '1') { |
|
return 'one' |
|
} |
|
|
|
if (style !== 'tab' && style !== 'one' && style !== 'mixed') { |
|
throw new Error( |
|
'Cannot serialize items with `' + |
|
style + |
|
'` for `options.listItemIndent`, expected `tab`, `one`, or `mixed`' |
|
) |
|
} |
|
|
|
return style |
|
}
|
|
|