X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/750484d1b5adb4ab9913b181d2f26b4a5a8476d0..c8f26592a74e776b9827ed68ccc1ee345ff52408:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 19403fed5..975457d95 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,21 +1,34 @@ inherit_from: .rubocop_todo.yml AllCops: - RunRailsCops: true + 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: @@ -24,3 +37,6 @@ Style/HashSyntax: Style/StringLiterals: EnforcedStyle: double_quotes + +Rails/HttpPositionalArguments: + Enabled: false