-
Notifications
You must be signed in to change notification settings - Fork 47.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[eslint-plugin-react-hooks] Missing type declarations #30119
Comments
After trying to add a I found the two different ./packages/eslint-plugin-react-hooks/npm/index.js // TODO: this doesn't make sense for an ESLint rule.
// We need to fix our build process to not create bundles for "raw" packages like this. // TODO: it's awkward to create a bundle for this but if we don't, the package
// won't get copied. We also can't create just DEV bundle because it contains a
// NODE_ENV check inside. We should probably tweak our build process to allow
// "raw" packages that don't get bundled. Fixing this would also allow adding declaration files to the published package, instead of being ignored by the bundler. Makes me wonder if |
Figured I'd dump the declaration files I wrote here for anyone who works on this issue in the future: // index.d.ts
import type { configs, rules } from './src/index';
declare var plugin: {
configs: typeof configs;
rules: typeof rules;
};
export default plugin; // src/index.d.ts
import type { Linter } from "eslint";
import type RulesOfHooks from './RulesOfHooks';
import type ExhaustiveDeps from './ExhaustiveDeps';
export const configs: {
recommended: Linter.Config;
};
export const rules: {
'rules-of-hooks': typeof RulesOfHooks;
'exhaustive-deps': typeof ExhaustiveDeps;
}; // both src/RulesOfHooks.d.ts and src/ExhaustiveDeps.d.ts
import type { Rule } from "eslint";
declare var rule: Rule.RuleModule;
export default rule; |
This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment (for example, "bump"), and we'll keep it open. We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment! |
bump |
This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment (for example, "bump"), and we'll keep it open. We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment! |
Not stale. |
Such an annoying issue with many eslint plugins. |
This issue also applies to |
Not stale. |
I can take this up once #30774 lands. |
@michaelfaith, #30774 is in. Are you still up for adding typings to |
I've started working on converting the hooks plugin to TypeScript entirely (rather than just adding declaration files), in preparation for merging the two plugins. One outcome of that will be type declarations. |
Versions: all
Severity: low
What
When imported in a TypeScript environment,
eslint-plugin-react-hooks
throws a "missing type declarations" error.Why
This is because
eslint-plugin-react-hooks
does not have any type declarations bundled in the package. These would usually be in anindex.d.ts
file.Also,
eslint-plugin-react-hooks
does not have a corresponding@types/...
package in the DefinitelyTyped project for users to rely on.Workaround
Users can follow the instructions in the error message and make a temporary module augmentation to declare their own types for the package.
In my personal project, I've done it this way:
But this will not automatically stay up-to-date with the package and is not guaranteed to be correct. Is it also incomplete and does not contain detailed information about the different configs in the plugin.
How to fix
There are several ways.
Usually the preferred solution is just to write everything in TypeScript and let it auto-generate declaration files for you. But I understand if a complete rewrite is not on the table :)
You could add a
@types/eslint-plugin-react-hooks
package in the DefinitelyTyped repo. But then your types would be defined in a completely different place from your actual code, and if you ever decide to migrate to TypeScript in the future, the old@types/...
package would need to be deprecated. Sounds messy.Best solution, in my opinion. Just add a
index.d.ts
file to the package that declare the type exports of the package. Then define it as the type declarations inpackage.json
. Easy peasy.I would be happy to do this myself. I just wanted to submit an issue first to confirm that the maintainers would approve.
Steps To Reproduce
typescript
,eslint-plugin-react-hooks
.ts
fileeslint-plugin-react-hooks
Code example
package.json
index.ts
(You'll need a
tsconfig.json
file too, but the settings are irrelevant to this example)The current behavior
TypeScript build error.
The expected behavior
No errors.
The text was updated successfully, but these errors were encountered: