From 76f34a826c33841c4dccd39991ee3f0a031f17f8 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Thu, 1 Jan 2026 11:45:49 -0700 Subject: [PATCH] Updated to Git Lint 10.0.0 link:https://alchemists.io/projects/git-lint/versions/10.0.0/[Details]. This only effects the development environment which is why this is a minor bump. Milestone: minor --- Gemfile | 2 +- Rakefile | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index 39e5bd6..528f7e5 100644 --- a/Gemfile +++ b/Gemfile @@ -6,5 +6,5 @@ source "https://rubygems.org" gem "caliber", "~> 0.82" gem "debug", "~> 1.11" -# gem "git-lint", "~> 9.0" +gem "git-lint", "~> 10.0" gem "rake", "~> 13.3" diff --git a/Rakefile b/Rakefile index 88c3321..c79775c 100644 --- a/Rakefile +++ b/Rakefile @@ -1,13 +1,12 @@ # frozen_string_literal: true -# require "git/lint/rake/register" +require "git/lint/rake/register" require "rubocop/rake_task" -# Git::Lint::Rake::Register.call +Git::Lint::Rake::Register.call RuboCop::RakeTask.new desc "Run code quality checks" -# task quality: %i[git_lint rubocop] -task quality: %i[rubocop] +task quality: %i[git_lint rubocop] task default: :quality