From 179b4f05a3bdfa3323bef9b3c5630654335f5fd6 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Fri, 24 Nov 2023 13:47:31 -0700 Subject: [PATCH] Added Rakefile quality task Necessary to be consistent with other projects so it is always possible to run code quality checks. Milestone: minor --- Rakefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 9ea4834..c79775c 100644 --- a/Rakefile +++ b/Rakefile @@ -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