redpanthers / starter

New rails project startup template to speed up project start time.
3 stars 3 forks source link

Automatically run the static code style checkers and correctors #13

Closed coderhs closed 6 years ago

coderhs commented 6 years ago

We have rubocop which can auto correct code, when we do bundle exec rubocop -a and we have prettier for js.

I want to automate it such a way that developers make it part of the development cycle to correct the code. Right now all the code in this repo is auto-corrected using rubocop so continuing that practice in future is also fine.

coderhs commented 6 years ago

35631e082 Done, right now the code checks run automatically on git commit and then gets committed.