Skip to content

Commit

Permalink
Merge pull request #2 from dawanda/fix-broken-cops
Browse files Browse the repository at this point in the history
fix broken cops 👮
  • Loading branch information
Uepsilon authored Dec 19, 2017
2 parents 93cbced + b91848a commit dc86593
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 @@ -9,13 +9,13 @@ AllCops:

############################## DISABLED ##############################

Style/AlignArray:
Layout/AlignArray:
Description: Align the elements of an array literal if they span more than one line.
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#align-multiline-arrays'
Enabled: false

# Align the elements of a hash literal if they span more than one line.
Style/AlignHash:
Layout/AlignHash:
Enabled: false

Style/AsciiComments:
Expand All @@ -29,7 +29,7 @@ Style/Documentation:
Description: 'Document classes and non-namespace modules.'
Enabled: false

Style/IndentHash:
Layout/IndentHash:
Description: 'Checks the indentation of the first key in a hash literal.'
Enabled: false

Expand All @@ -53,7 +53,7 @@ Metrics/ParameterLists:
Style/Alias:
EnforcedStyle: prefer_alias_method

Style/AlignParameters:
Layout/AlignParameters:
# Alignment of parameters in multi-line method calls.
#
# The `with_first_parameter` style aligns the following lines along the same
Expand Down Expand Up @@ -88,11 +88,11 @@ Style/BlockDelimiters:
- xit
- specify

Style/MultilineOperationIndentation:
Layout/MultilineOperationIndentation:
EnforcedStyle: indented

Style/SignalException:
EnforcedStyle: semantic

Style/SpaceAroundOperators:
Layout/SpaceAroundOperators:
AllowForAlignment: true

0 comments on commit dc86593

Please sign in to comment.