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.7.3
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.7.4
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 29, 2023

  1. Revert "fix(require-description-complete-sentence): report bare pun…

    …ctuation; fixes #573"
    
    This reverts commit b418dbd.
    brettz9 committed Jan 29, 2023
    Copy the full SHA
    139d9b7 View commit details
  2. fix(require-description-complete-sentence): report bare punctuation;

    …fixes #573
    
    This reverts commit 06ecb29 to prompt release.
    brettz9 committed Jan 29, 2023
    Copy the full SHA
    2e5782a View commit details
Showing with 0 additions and 1 deletion.
  1. +0 −1 src/rules/requireDescriptionCompleteSentence.js
1 change: 0 additions & 1 deletion src/rules/requireDescriptionCompleteSentence.js
Original file line number Diff line number Diff line change
@@ -15,7 +15,6 @@ const extractParagraphs = (text) => {

const extractSentences = (text, abbreviationsRegex) => {
const txt = text

// Remove all {} tags.
.replace(/\{[\s\S]*?\}\s*/gu, '')