IT4C.dev/.textlintrc.js
Ulf Gebhardt f0ead6c746
renamed command lint to test to fit the npm standard
new rule textlint-rule-no-exclamation-question-mark
2023-01-03 21:45:54 +01:00

14 lines
229 B
JavaScript

module.exports = {
rules: {
'no-todo': true,
'no-start-duplicated-conjunction': {
interval : 2, // interval of sentences
},
'max-comma': {
max : 4,
},
},
filters: {
comments: true,
},
}