Closed stevepolitodesign closed 3 months ago
Closes #1221
The release of Rails 7.2.0 introduced its own linting mechanism.
Unfortunately, this creates a conflict with our linting mechanism.
This is only relevant when running rails new with our application template.
rails new
In order to fix this, we simply require the caller pass --skip_rubocop.
--skip_rubocop
A future commit could explore re-introducing the system executable to account for our required options, but for now, this fixes the issue.
Closes #1221
The release of Rails 7.2.0 introduced its own linting mechanism.
Unfortunately, this creates a conflict with our linting mechanism.
This is only relevant when running
rails new
with our application template.In order to fix this, we simply require the caller pass
--skip_rubocop
.A future commit could explore re-introducing the system executable to account for our required options, but for now, this fixes the issue.