- Linting: Apply latest eslint-plugin-jsdoc; lint properties/param defaults

This commit is contained in:
Brett Zamir
2020-10-20 03:52:46 +08:00
parent 19342e4349
commit d03e5eeae6
7 changed files with 15 additions and 12 deletions

View File

@@ -66,7 +66,10 @@ module.exports = {
// environments; see also discussion above
// `mocha-cleanup/no-assertions-outside-it`
'jsdoc/check-examples': ['warn', {
rejectExampleCodeRegex: '^`'
rejectExampleCodeRegex: '^`',
checkDefaults: true,
checkParams: true,
checkProperties: true
}],
// https://github.com/sindresorhus/eslint-plugin-unicorn/issues/453