mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-13 09:25:49 +00:00
- renamed textlintrc to textlintrc.js - new rule textlint-rule-no-start-duplicated-conjunction
11 lines
184 B
JavaScript
11 lines
184 B
JavaScript
module.exports = {
|
|
rules: {
|
|
'no-todo': true,
|
|
'no-start-duplicated-conjunction': {
|
|
interval : 2 // interval of sentences
|
|
}
|
|
},
|
|
filters: {
|
|
comments: true
|
|
}
|
|
} |