Set up lefthook for Ruby formatters and type checking

This commit is contained in:
Dylan Knutson
2025-07-13 01:20:45 +00:00
parent fd82eafb50
commit 6fc3f772c3
79 changed files with 172996 additions and 14 deletions

10
Rakefile Normal file
View File

@@ -0,0 +1,10 @@
# frozen_string_literal: true
require "bundler/gem_tasks"
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec)
require "standard/rake"
task default: %i[spec standard]