IanVS / eslint-nibble

Ease into ESLint, by fixing one rule at a time
MIT License
787 stars 29 forks source link

Fix all fixable eslint issues #93

Closed brunolnetto closed 2 years ago

brunolnetto commented 2 years ago

Since fixable eslint issues may be hand by hand fixed, a natural feature is to allow users to have the option to autofix all fixable ones.

IanVS commented 2 years ago

That can be done by eslint without the need for eslint-nibble. https://eslint.org/docs/user-guide/command-line-interface#fixing-problems

This tool isn't meant to replace eslint, but rather add some functionality to it, specifically focusing on one rule at a time.

brunolnetto commented 2 years ago

Nice. Thank you for the quick answer!