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: v50.6.7
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: ed622628fc778ab9c549b3dde179d4a771f23ef4
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 17, 2025

  1. chore: avoid .DS_Store files in docs

    brettz9 committed Mar 17, 2025
    Copy the full SHA
    3ea1cdf View commit details
  2. fix: add missing config type(s) (#1365)

    niklasholm authored Mar 17, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ed62262 View commit details
Showing with 4 additions and 1 deletion.
  1. +3 −0 src/bin/generateDocs.js
  2. +1 −1 src/index.js
3 changes: 3 additions & 0 deletions src/bin/generateDocs.js
Original file line number Diff line number Diff line change
@@ -202,6 +202,9 @@ const getDocPaths = () => {
// Will get path separately below
return null;
}
if (docFile === '.DS_Store') {
return null;
}

const innerBasePath = path.join(basePath, docFile);
const writeInnerBasePath = path.join(writeBasePath, docFile);
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -59,7 +59,7 @@ import validTypes from './rules/validTypes.js';
import { getJsdocProcessorPlugin } from './getJsdocProcessorPlugin.js';

/**
* @typedef {"recommended" | "stylistic" | "contents" | "logical"} ConfigGroups
* @typedef {"recommended" | "stylistic" | "contents" | "logical" | "requirements"} ConfigGroups
* @typedef {"" | "-typescript" | "-typescript-flavor"} ConfigVariants
* @typedef {"" | "-error"} ErrorLevelVariants
* @type {import('eslint').ESLint.Plugin & {