Skip to content

Commit

Permalink
Release 6.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
imjoehaines authored Jul 20, 2020
2 parents 5925496 + 3df705f commit 1d43234
Show file tree
Hide file tree
Showing 119 changed files with 3,285 additions and 515 deletions.
55 changes: 55 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,57 @@
inherit_from: .rubocop_todo.yml

AllCops:
Exclude:
- 'bin/**/*'
- 'example/**/*'
- 'spec/fixtures/**/*'
- 'features/fixtures/**/*'

# We can't use ".freeze" on our constants in case users are monkey patching
# them — this would be a BC break
Style/MutableConstant:
Enabled: false

Layout/EmptyLinesAroundAttributeAccessor:
Enabled: true

Layout/SpaceAroundMethodCallOperator:
Enabled: true

Lint/RaiseException:
Enabled: true

Lint/StructNewOverride:
Enabled: true

Lint/DeprecatedOpenSSLConstant:
Enabled: true

Lint/MixedRegexpCaptureTypes:
Enabled: true

Style/RedundantFetchBlock:
Enabled: true

Style/ExponentialNotation:
Enabled: false

Style/HashEachMethods:
Enabled: true

Style/RedundantRegexpCharacterClass:
Enabled: true

Style/RedundantRegexpEscape:
Enabled: true

# These require newer version of Ruby than our minimum supported version, so
# have to be disabled
Style/HashTransformKeys: # Requires Ruby 2.5
Enabled: false

Style/HashTransformValues: # Requires Ruby 2.4
Enabled: false

Style/SlicingWithRange: # Requires Ruby 2.6
Enabled: false
Loading

0 comments on commit 1d43234

Please sign in to comment.