Added Rakefile quality task

Necessary to be consistent with other projects so it is always possible to run code quality checks.

Milestone: minor
This commit is contained in:
Brooke Kuhlmann
2023-11-24 13:47:31 -07:00
parent 91acff4756
commit 179b4f05a3

View File

@@ -6,4 +6,7 @@ require "rubocop/rake_task"
Git::Lint::Rake::Register.call
RuboCop::RakeTask.new
task default: %i[git_lint rubocop]
desc "Run code quality checks"
task quality: %i[git_lint rubocop]
task default: :quality