You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
textlint rule that check with or without period in header.
By default, no period mark at end of header.
[OK]
# header
[NG]
# header.
Install
npm install textlint-rule-period-in-header
Usage
{
"rules": {
"period-in-header": true
}
}
Options
{
// Prefer to use period mark. (default is no period)// You can select period mark from `periodMarks`."periodMark": "",
// Built-in recognized period mark list."periodMarks": [".", "。", "."]
}