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: v39.6.8
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: v39.6.9
Choose a head ref
  • 3 commits
  • 4 files changed
  • 2 contributors

Commits on Jan 25, 2023

  1. Copy the full SHA
    3d9eb6e View commit details

Commits on Jan 27, 2023

  1. Copy the full SHA
    e3efb86 View commit details
  2. docs: update README

    brettz9 committed Jan 27, 2023
    Copy the full SHA
    4883cd0 View commit details
Showing with 41 additions and 1 deletion.
  1. +1 −0 .README/README.md
  2. +11 −0 README.md
  3. +1 −1 src/rules/requireDescriptionCompleteSentence.js
  4. +28 −0 test/rules/assertions/requireDescriptionCompleteSentence.js
1 change: 1 addition & 0 deletions .README/README.md
Original file line number Diff line number Diff line change
@@ -88,6 +88,7 @@ Finally, enable all of the rules that you would like to use.
"jsdoc/require-throws": 1,
"jsdoc/require-yields": 1, // Recommended
"jsdoc/require-yields-check": 1, // Recommended
"jsdoc/sort-tags": 1,
"jsdoc/tag-lines": 1, // Recommended
"jsdoc/valid-types": 1 // Recommended
}
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -159,6 +159,7 @@ Finally, enable all of the rules that you would like to use.
"jsdoc/require-throws": 1,
"jsdoc/require-yields": 1, // Recommended
"jsdoc/require-yields-check": 1, // Recommended
"jsdoc/sort-tags": 1,
"jsdoc/tag-lines": 1, // Recommended
"jsdoc/valid-types": 1 // Recommended
}
@@ -11009,6 +11010,16 @@ function quux () {
}
// Message: Sentence must end with a period.

/**
* Foo
*
* @param x
*/
function quux () {

}
// Message: Sentence must end with a period.

/**
* Foo
* Bar.
2 changes: 1 addition & 1 deletion src/rules/requireDescriptionCompleteSentence.js
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@ const validateDescription = (
let text = sourceCode.getText(jsdocNode);

if (!/[.:?!]$/u.test(paragraph)) {
const line = paragraph.split('\n').pop();
const line = paragraph.split('\n').filter(Boolean).pop();

text = text.replace(new RegExp(`${escapeStringRegexp(line)}$`, 'mu'), `${line}.`);
}
28 changes: 28 additions & 0 deletions test/rules/assertions/requireDescriptionCompleteSentence.js
Original file line number Diff line number Diff line change
@@ -196,6 +196,34 @@ export default {
}
`,
},
{
code: `
/**
* Foo
*
* @param x
*/
function quux () {
}
`,
errors: [
{
line: 3,
message: 'Sentence must end with a period.',
},
],
output: `
/**
* Foo.
*
* @param x
*/
function quux () {
}
`,
},
{
code: `
/**