<!-- NOTE 1: It would help if you can first scan the issue tracker before submitting a new issue: https://github.com/gajus/eslint-plugin-jsdoc/issues NOTE 2: If you are running ESLint/`eslint-plugin-jsdoc` from within an IDE, before filing an issue, please be sure to restart the IDE after making any updates to ensure you are indeed getting errors with the updated version. Running `eslint` on the command line may also be helpful in allowing you to better provide us with the error details including the stack trace. NOTE 3: If you have a bug specifically related to the parsing of types, e.g., the `some-unrecognized+type-syntax` (within curly brackets) in: /** * @param {some-unrecognized+type-syntax} myName */ ...then please file instead at https://github.com/simonseyock/jsdoc-type-pratt-parser/issues/ --> <!-- TIP: If you have a complicated config with `overrides`, you can simplify the config you provide us by running `eslint` with `--print-config` and the file that is triggering the error. See: https://eslint.org/docs/user-guide/command-line-interface#print-config --> ## Expected behavior ESLint should continue to provide fixes for `.ts` files. ## Actual behavior ESLint no longer provides any fixes for any rules in files that the processor runs on. ## ESLint Config <!-- What is the minimal config that reproduces the issue? Please try to reproduce with only a single rule in your config (along with the minimal number of options or settings that are needed to trigger the error). --> ```js { name: "deputy/docs/examples/setup", plugins: { examples: getJsdocProcessorPlugin({ checkDefaults: true, checkParams: true, checkProperties: true, exampleCodeRegex: "^```([\\s\\S]*)```\\s*$", parser: ts.parser as Linter.Parser, }), }, processor: "examples/examples", }, ``` ## ESLint sample <!-- What code triggers the error? --> <!-- OR, if this is not triggered by a single rule, what is the problem and how can one reproduce? --> I've been testing with `unicorn-x/no-negated-condition` ```ts !boolean ? some : val ``` ## Environment - Node version: v24.2.0 - ESLint version v9.31.0 - `eslint-plugin-jsdoc` version: 51.3.1