Skip to content

Commit

Permalink
Make rubocop yamllint clean
Browse files Browse the repository at this point in the history
  • Loading branch information
ekohl committed Jul 13, 2023
1 parent 0261257 commit d4ab232
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,27 @@ AllCops:
DisplayStyleGuide: true
TargetRubyVersion: '2.7'
Exclude:
- vendor/**/*
- .vendor/**/*
- vendor/**/*
- .vendor/**/*

# this currently doesn't work with the way we handle our secrets
Gemspec/RequireMFA:
Enabled: false

# current Vox Pupuli default is to use `add_development_dependency` in the gemspec
# Vox Pupuli default is to use `add_development_dependency` in the gemspec
Gemspec/DevelopmentDependencies:
Enabled: false

Style/TrailingCommaInHashLiteral:
Enabled: True
Enabled: true
EnforcedStyleForMultiline: consistent_comma

Style/TrailingCommaInArrayLiteral:
Enabled: True
Enabled: true
EnforcedStyleForMultiline: consistent_comma

Style/TrailingCommaInArguments:
Enabled: True
Enabled: true
EnforcedStyleForMultiline: comma

Metrics:
Expand Down

0 comments on commit d4ab232

Please sign in to comment.