Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Advent of Code 2024 - Day 2 #17

Merged
merged 2 commits into from
Dec 15, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: Update .rubocop.yml
cdalvaro committed Dec 15, 2024
commit 3ad5cf9d1f75c5cf10f2d29cbd9734df539cc71e
6 changes: 6 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -10,9 +10,15 @@ AllCops:
Layout/LineLength:
Max: 120

Metrics/AbcSize:
Max: 25

Metrics/MethodLength:
Max: 30

Minitest/MultipleAssertions:
Max: 5

Style/GlobalVars:
Enabled: false

10 changes: 6 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -16,10 +16,6 @@ group :development do
gem "rubocop-rake"
gem "rubocop-shopify"

# codecov
gem "simplecov"
gem "simplecov-cobertura"

# Type Signature for Ruby
gem "rbs", "~> 3.0"

@@ -29,3 +25,9 @@ group :development do
# Overcommit
gem "overcommit"
end

group :test do
# codecov
gem "simplecov"
gem "simplecov-cobertura"
end