diff --git a/.rubocop.yml b/.rubocop.yml index 6fb7ac25de5..e28a0876aa1 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -2,11 +2,11 @@ AllCops: TargetRubyVersion: 2.4 DisabledByDefault: true Exclude: - - "db/schema.rb" - - "bundle/**/*" - - "vendor/**/*" - - "node_modules/**/*" - - "public/**/*" + - 'db/schema.rb' + - 'bundle/**/*' + - 'vendor/**/*' + - 'node_modules/**/*' + - 'public/**/*' # Prefer &&/|| over and/or. Style/AndOr: @@ -17,10 +17,6 @@ Style/AndOr: Style/BracesAroundHashParameters: Enabled: true -# Check for uses of braces or do/end around single line or multi-line blocks. -Style/BlockDelimiters: - Enabled: true - # Align `when` with `case`. Layout/CaseIndentation: Enabled: true @@ -57,7 +53,7 @@ Layout/SpaceAroundOperators: Enabled: true Layout/SpaceBeforeFirstArg: - Enabled: true + Enabled: true # Defining a method with parameters needs parentheses. Style/MethodDefParentheses: