Files
regorus/bindings/ruby/.rubocop.yml
thedavemarshall a07beca983 Update ruby binding deps, ruby gem version 0.2.3 (#374)
* Update ruby binding deps, ruby gem version 0.2.3

* and gem version to 0.2.3

* specify bunlder and rubygems version for CI
2025-03-07 16:24:29 -08:00

30 lines
418 B
YAML

require:
- rubocop-minitest
- rubocop-rake
AllCops:
TargetRubyVersion: 3.4
NewCops: enable
Layout/LineLength:
Max: 180
Lint/EmptyClass:
Enabled: false
Metrics/ClassLength:
Exclude:
- 'test/**/*.rb'
Metrics/MethodLength:
Enabled: false
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/StringLiteralsInInterpolation:
EnforcedStyle: double_quotes
Style/WordArray:
Enabled: false