IT4C.dev/.textlintrc.js
Ulf Gebhardt 2f82d2954a
- test-lint workflow
- renamed textlintrc to textlintrc.js
- new rule textlint-rule-no-start-duplicated-conjunction
2023-01-03 21:41:40 +01:00

11 lines
184 B
JavaScript

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