sheerun / prettier-standard

Formats with Prettier and lints with ESLint+Standard! (✿◠‿◠)
MIT License
868 stars 44 forks source link

How to check for non-style problems? #11

Closed DylanVann closed 7 years ago

DylanVann commented 7 years ago

Running standard will tell you if there are things like unused variables. Running prettier-standard won't.

Ideally I think we want a tool that can automatically format code and also:

DylanVann commented 7 years ago

Maybe using throws in prettierESLintOptions.

https://github.com/prettier/prettier-eslint#throws

sheerun commented 7 years ago

well, the whole point of formatter is to format, not lint, so you don't need to fix anything manually

If you'd like to implement extra flag to also show linting issues, I'm open to it. I don't intent to implement it by myself for the lack of time