Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: gajus/eslint-plugin-jsdoc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v37.4.1
Choose a base ref
...
head repository: gajus/eslint-plugin-jsdoc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v37.4.2
Choose a head ref
  • 3 commits
  • 5 files changed
  • 1 contributor

Commits on Dec 28, 2021

  1. test: report syntax errors

    brettz9 committed Dec 28, 2021
    Copy the full SHA
    934470e View commit details
  2. fix(match-description): address issue with constructor being requ…

    …ired with `mainDescription` false; fixes #802
    brettz9 committed Dec 28, 2021
    Copy the full SHA
    80ab88a View commit details
  3. Copy the full SHA
    e793c66 View commit details
Showing with 40 additions and 4 deletions.
  1. +8 −0 README.md
  2. +2 −2 package.json
  3. +3 −1 src/rules/matchDescription.js
  4. +18 −0 test/rules/assertions/matchDescription.js
  5. +9 −1 test/rules/index.js
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -7315,6 +7315,14 @@ function quux (foo) {
* @param enabled `true` to enable, `false` to disable. Default: `true`.
*/
// "jsdoc/match-description": ["error"|"warn", {"contexts":["any"],"mainDescription":"/^[A-Z`-].*\\.$/us","matchDescription":"^([A-Z`-].*(\\.|:)|-\\s.*)$","tags":{"param":true,"returns":true}}]

/**
* @constructor
* @todo Ok.
*/
function quux () {
}
// "jsdoc/match-description": ["error"|"warn", {"mainDescription":false,"tags":{"todo":true}}]
````


4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -5,12 +5,12 @@
"url": "http://gajus.com"
},
"dependencies": {
"@es-joy/jsdoccomment": "0.14.0",
"@es-joy/jsdoccomment": "0.14.1",
"comment-parser": "1.3.0",
"debug": "^4.3.3",
"escape-string-regexp": "^4.0.0",
"esquery": "^1.4.0",
"jsdoc-type-pratt-parser": "^2.0.1",
"jsdoc-type-pratt-parser": "^2.0.2",
"regextras": "^0.8.0",
"semver": "^7.3.5",
"spdx-expression-parse": "^3.0.1"
4 changes: 3 additions & 1 deletion src/rules/matchDescription.js
Original file line number Diff line number Diff line change
@@ -31,7 +31,9 @@ export default iterateJsdoc(({
errorMessage = mainDescription.message;
}

if (!tag && mainDescriptionMatch === false) {
if (mainDescriptionMatch === false && (
!tag || !Object.prototype.hasOwnProperty.call(tags, tag.tag))
) {
return;
}

18 changes: 18 additions & 0 deletions test/rules/assertions/matchDescription.js
Original file line number Diff line number Diff line change
@@ -1552,5 +1552,23 @@ export default {
},
],
},
{
code: `
/**
* @constructor
* @todo Ok.
*/
function quux () {
}
`,
options: [
{
mainDescription: false,
tags: {
todo: true,
},
},
],
},
],
};
10 changes: 9 additions & 1 deletion test/rules/index.js
Original file line number Diff line number Diff line change
@@ -24,7 +24,15 @@ const main = async () => {
ecmaVersion: 6,
};

const assertions = (await import(`./assertions/${camelCase(ruleName)}`)).default;
// Catch syntax errors
let assertions;
try {
assertions = (await import(`./assertions/${camelCase(ruleName)}`)).default;
} catch (error) {
// eslint-disable-next-line no-console -- Reporting back to tester
console.error(error);
return;
}

if (!('meta' in rule && 'schema' in rule.meta) && (
assertions.invalid.some((item) => {