Jayden Seric

Results 226 comments of Jayden Seric

As discussed [here](https://github.com/gajus/eslint-plugin-jsdoc/issues/1066#issuecomment-1537679136), the config `plugin:jsdoc/recommended-typescript-error` should disable the `jsdoc/no-undefined-types` rule because TypeScript itself is responsible for reporting errors about invalid JSDoc types. When in TypeScript mode, the rule `jsdoc/no-undefined-types`...

Thanks for the report 🙂 I likely won't get around to updating this project or testing any fixes for a long time; I had a new version in the works...

@drakanor thanks for the kind words :) It would be fun to write a new one with the same design in React; it would be really technically elegant. I'll get...

The most obvious thing that needs to happen is to publish TypeScript typings for the package, so that you can programmatically import and use this ESLint plugin with type safety...

Interesting 🤔 Webpack opens a can of works because you can modify anything to do anything else via webpack config. Generally, I keep bundler config to a minimum and avoid...

Another thing to consider is that there are other bundlers than just webpack; an ideal solution would work for all users. The "dumbest" approach would be to add an `alias`...

Thinking about this fresh, and especially after working with web standard import maps in browsers and [Deno](https://deno.land) with [JSPM](https://jspm.org), adding support for [import maps](https://github.com/WICG/import-maps) is probably the best way forward....

`mkdirp` is not a part of the `find-unused-exports` dependency graph, so I think that error is not from the `find-unused-exports` trying to do it's job, but rather it's trying to...

The problem is that the `.gitignore` feature is implemented using [`globby`](https://github.com/sindresorhus/globby), which searches for `.gitignore` files down from the CWD. They have an open issue to respect `.gitignore` files above...

For now we can keep it open here; if this is an issue people run into a lot and `globby` takes too long to fix it we can look into...