-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
119 changed files
with
3,285 additions
and
515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.