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.8.0
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.8.1
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 9, 2022

  1. Copy the full SHA
    8847608 View commit details
Showing with 9 additions and 2 deletions.
  1. +9 −2 src/getDefaultTagStructureForMode.js
11 changes: 9 additions & 2 deletions src/getDefaultTagStructureForMode.js
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ const getDefaultTagStructureForMode = (mode) => {
const isTypescript = mode === 'typescript';
const isPermissive = mode === 'permissive';

const isJsdocOrPermissive = isJsdoc || isPermissive;
const isJsdocOrTypescript = isJsdoc || isTypescript;
const isTypescriptOrClosure = isTypescript || isClosure;
const isClosureOrPermissive = isClosure || isPermissive;
@@ -724,19 +725,25 @@ const getDefaultTagStructureForMode = (mode) => {
'nameContents', 'namepath-defining',
],

// TypeScript may allow it to be dropped if followed by @property or @member;
// also shown as missing in Closure
// "namepath"
[
'nameRequired', isJsdocTypescriptOrPermissive,
'nameRequired', isJsdocOrPermissive,
],

// Is not `typeRequired` for TypeScript because it gives an error:
// JSDoc '@typedef' tag should either have a type annotation or be followed by '@property' or '@member' tags.

// Has example showing curly brackets but not in doc signature
[
'typeAllowed', true,
],

// TypeScript may allow it to be dropped if followed by @property or @member
// "namepath"
[
'typeOrNameRequired', true,
'typeOrNameRequired', !isTypescript,
],
]),
],