You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
Hello, and thanks for the plugin, which I use in my TypeScript projects.
Most ESLint plugins contain a recommended config, which simplifies usage of the plugin.
Since this plugin only provides one rule, a recommended can simply setup for end users. Such a config would automatically enable the plugin and automatically enable the rule.
In other words, this is currently the config that I have to have in order to use this plugin:
constconfig={plugins: ["deprecation",// Other plugins enabled here.],rules: {"deprecation/deprecation": "error",// Other rules enabled here.},};
Hello, and thanks for the plugin, which I use in my TypeScript projects.
Most ESLint plugins contain a
recommended
config, which simplifies usage of the plugin.Since this plugin only provides one rule, a
recommended
can simply setup for end users. Such a config would automatically enable the plugin and automatically enable the rule.In other words, this is currently the config that I have to have in order to use this plugin:
But this could/should be simplified to:
If you agree that this is a good idea, I will submit a PR, as setting this up is relatively simple.
The text was updated successfully, but these errors were encountered: