Skip to content
Snippets Groups Projects
Unverified Commit 095317cc authored by David Schmitt's avatar David Schmitt Committed by GitHub
Browse files

Merge pull request #329 from Sharpie/disable-rubocop-BracesAroundHashParameters

Disable RuboCop Style/BracesAroundHashParameters
parents 4151b0a0 7e560452
No related branches found
No related tags found
No related merge requests found
...@@ -159,6 +159,10 @@ Rakefile: ...@@ -159,6 +159,10 @@ Rakefile:
Description: Prefer braces for chaining. Mostly an aesthetical choice. Better to be consistent then. Description: Prefer braces for chaining. Mostly an aesthetical choice. Better to be consistent then.
EnforcedStyle: braces_for_chaining EnforcedStyle: braces_for_chaining
Style/BracesAroundHashParameters:
Description: Braces are required by Ruby 2.7. Cop removed from RuboCop v0.80.0. See https://github.com/rubocop-hq/rubocop/pull/7643
Enabled: false
Style/ClassAndModuleChildren: Style/ClassAndModuleChildren:
Description: Compact style reduces the required amount of indentation. Description: Compact style reduces the required amount of indentation.
EnforcedStyle: compact EnforcedStyle: compact
......
...@@ -223,7 +223,6 @@ ...@@ -223,7 +223,6 @@
- Style/BeginBlock - Style/BeginBlock
- Style/BlockComments - Style/BlockComments
- Style/BlockDelimiters - Style/BlockDelimiters
- Style/BracesAroundHashParameters
- Style/CaseEquality - Style/CaseEquality
- Style/CharacterLiteral - Style/CharacterLiteral
- Style/ClassAndModuleCamelCase - Style/ClassAndModuleCamelCase
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment