X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4f4180e4bd28cd3e096a056941515f8c57278507..69b967c9ff7c185f99ba881a8b8591c02c809628:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index a0533b162..975457d95 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,14 +1,34 @@ inherit_from: .rubocop_todo.yml +AllCops: + Include: + - '**/*.builder' + +Rails: + Enabled: true + Style/BracesAroundHashParameters: EnforcedStyle: context_dependent +Style/ExtraSpacing: + AllowForAlignment: true + Style/FileName: Exclude: - 'script/deliver-message' - 'script/locale/reload-languages' - 'script/update-spam-blocks' +Style/IfInsideElse: + Enabled: false + +Style/GlobalVars: + Exclude: + - 'lib/quad_tile/extconf.rb' + +Style/GuardClause: + Enabled: false + Style/HashSyntax: EnforcedStyle: hash_rockets Exclude: @@ -17,3 +37,6 @@ Style/HashSyntax: Style/StringLiterals: EnforcedStyle: double_quotes + +Rails/HttpPositionalArguments: + Enabled: false