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: v46.2.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: v46.2.4
Choose a head ref
  • 1 commit
  • 5 files changed
  • 1 contributor

Commits on Jun 4, 2023

  1. fix(imports-as-dependencies): allow relative paths

    Also:
    - fix: generation of failing/passing examples
    brettz9 committed Jun 4, 2023
    Copy the full SHA
    7469e59 View commit details
8 changes: 7 additions & 1 deletion .README/rules/imports-as-dependencies.md
Original file line number Diff line number Diff line change
@@ -11,4 +11,10 @@ which is not listed in `dependencies` or `devDependencies`.
|Settings||
|Options||

<!-- assertions importsAsDependencies -->
## Failing examples

<!-- assertions-failing importsAsDependencies -->

## Passing examples

<!-- assertions-passing importsAsDependencies -->
73 changes: 72 additions & 1 deletion docs/rules/imports-as-dependencies.md
Original file line number Diff line number Diff line change
@@ -13,4 +13,75 @@ which is not listed in `dependencies` or `devDependencies`.
|Settings||
|Options||

<!-- assertions importsAsDependencies -->
<a name="user-content-failing-examples"></a>
<a name="failing-examples"></a>
## Failing examples

The following patterns are considered problems:

````js
/**
* @type {null|import('sth').SomeApi}
*/
// Message: import points to package which is not found in dependencies

/**
* @type {null|import('sth').SomeApi}
*/
// Settings: {"jsdoc":{"mode":"permissive"}}
// Message: import points to package which is not found in dependencies

/**
* @type {null|import('missingpackage/subpackage').SomeApi}
*/
// Message: import points to package which is not found in dependencies

/**
* @type {null|import('@sth/pkg').SomeApi}
*/
// Message: import points to package which is not found in dependencies
````



<a name="user-content-passing-examples"></a>
<a name="passing-examples"></a>
## Passing examples

The following patterns are not considered problems:

````js
/**
* @type {null|import('eslint').ESLint}
*/

/**
* @type {null|import('eslint/use-at-your-own-risk').ESLint}
*/

/**
* @type {null|import('@es-joy/jsdoccomment').InlineTag}
*/

/**
* @type {null|import(}
*/

/**
* @type {null|import('esquery').ESQueryOptions}
*/

/**
* @type {null|import('@es-joy/jsdoccomment').InlineTag|
* import('@es-joy/jsdoccomment').JsdocBlock}
*/

/**
* @type {null|import('typescript').Program}
*/

/**
* @type {null|import('./relativePath.js').Program}
*/
````

8 changes: 7 additions & 1 deletion src/bin/generateRule.js
Original file line number Diff line number Diff line change
@@ -127,7 +127,13 @@ export default iterateJsdoc(({
|Settings||
|Options||
<!-- assertions ${camelCasedRuleName} -->
## Failing examples
<!-- assertions-failing ${camelCasedRuleName} -->
## Passing examples
<!-- assertions-passing ${camelCasedRuleName} -->
`;

const ruleReadmePath = `./.README/rules/${ruleName}.md`;
4 changes: 4 additions & 0 deletions src/rules/importsAsDependencies.js
Original file line number Diff line number Diff line change
@@ -67,6 +67,10 @@ export default iterateJsdoc(({
/^(@[^/]+\/[^/]+|[^/]+).*$/u, '$1',
);

if ((/^[./]/u).test(mod)) {
return;
}

if (!moduleCheck.has(mod)) {
let pkg;
try {
7 changes: 7 additions & 0 deletions test/rules/assertions/importsAsDependencies.js
Original file line number Diff line number Diff line change
@@ -109,5 +109,12 @@ export default {
*/
`,
},
{
code: `
/**
* @type {null|import('./relativePath.js').Program}
*/
`,
},
],
};