-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Add eslint plugins? #386
Comments
So users can specify a custom plugin. For user that need flowtype support, or whatever the new flavor of the week will be in the future. Fixes standard/standard#386
Sure. This isn't the first issue about support for flowtype. See: #306, #186, and #157 I've been wanting to expose the underlying eslint configurability via In the past, I've rejected such things on the basis that we want to avoid configurability in But, users use JSX, Babel, React, Flow, and a bunch of other things. Rather than support them in standard core, I want to move to a model where So, with all that said, here's a PR to add support to Works in {
"standard": {
"plugins": [ "my-plugin" ]
}
} Or via command line option:
This will be released in standard v6. |
So I have been looking at flow, and would very much like to try it out for a project I'm working on to get some of the lovely benefits of strong typing. However, standard isn't happy about the type annotations when I start adding them in.
I found a nice eslint plugin that strips the type annotations for you, and started looking into whether it was possible to use this with standard, but it doesn't seem like it.
Any thoughts on the possibility of letting users add eslint plugins? In this case, the type annotations don't make it past the babel compile anyway, so it's not bending the rules of standard.js in any way. Standard already does accept custom parsers too, so I'm hoping it would be reasonable to add plugins as well.
If this does sound ok, I'd be happy to contribute!
The text was updated successfully, but these errors were encountered: