X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/750484d1b5adb4ab9913b181d2f26b4a5a8476d0..e4acc41d28505f6a6f7e153affa0dff982bfedbb:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 19403fed5..62685c8ed 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,21 +1,30 @@ inherit_from: .rubocop_todo.yml -AllCops: - RunRailsCops: true +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 +33,7 @@ Style/HashSyntax: Style/StringLiterals: EnforcedStyle: double_quotes + +Style/WordArray: + Exclude: + - 'test/models/message_test.rb'