IT4C.dev/.textlintrc.js
Ulf Gebhardt 583a8cf887
textlint-rule-no-dead-link rule
include test documentation in README.md
2023-01-03 21:58:12 +01:00

25 lines
512 B
JavaScript

module.exports = {
rules: {
'no-todo': true,
'no-start-duplicated-conjunction': {
interval : 2, // interval of sentences
},
'max-comma': {
max : 4,
},
'no-dead-link': {
checkRelative: true,
baseURI: null,
ignore: ['http://localhost*'],
preferGET: [],
ignoreRedirects: false,
retry: 3,
userAgent: 'textlint-rule-no-dead-link/1.0',
maxRetryTime: 10,
maxRetryAfterTime: 90
}
},
filters: {
comments: true,
},
}