Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Linting checks are run as part of the single rake command
* Having all of our tests run through a single command helps us run tests in all environments in a consistent manner. This will help us catch linting errors in development before our work is merged in. It also removes the need for CI testing commands to stay in sync as we add or remove different tests. * The ordering declares that `standard` should be run after `rspec`. The thought process is that early functional feedback is more important than stylistic feedback. We expect rspec failures as a result of TDD and getting a fast feedback cycle is important. Running the linting everytime before rspec can break focus and momentum. * The ordering decision can be aided by using editor linting to help make corrections in tandem to avoid a big blob of stylistic fixes at the end. Without this, there is the risk of large trailing commits solely focused on style fixes. The intended behaviour would be to have these contributed in the original commits.
- Loading branch information