Sha256: 83cf050d4072c88dc9c2664a3bb9f974f4c4c2552ebcb13dd2c8473f9021c80b
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
AllCops: TargetRubyVersion: 2.7.0 Layout/LineLength: Max: 120 # Increase line length to 120 Exclude: - "config/routes.rb" Metrics/BlockLength: # Exclude block length for routes and tests Exclude: - "config/routes.rb" - "test/**/*" Metrics/ClassLength: # Exclude class length for tests Exclude: - "test/**/*" Metrics/MethodLength: # Exclude method length for tests Exclude: - "test/**/*" Style/DoubleNegation: Enabled: false Style/Documentation: Enabled: false # Disable Style/Documentation because... Style/StringLiterals: EnforcedStyle: double_quotes # Use double quotes ALL THE TIME!!! # These cops are currently pending and will be enabled by default at some point, but adding for now to stop Rubocop # complaining... Layout/EmptyLinesAroundAttributeAccessor: Enabled: true Layout/SpaceAroundMethodCallOperator: Enabled: true Lint/RaiseException: Enabled: true Lint/StructNewOverride: Enabled: true Style/ExponentialNotation: Enabled: true Style/HashEachMethods: Enabled: true Style/HashTransformKeys: Enabled: true Style/HashTransformValues: Enabled: true Style/SlicingWithRange: Enabled: true
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
boxt_ruby_style_guide-4.4.0 | default.yml |