X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/750484d1b5adb4ab9913b181d2f26b4a5a8476d0..f3bd3834e04559af3d79b48f675b24f6190abb6b:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 19403fed5..fc2b5cd85 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,21 +1,61 @@ inherit_from: .rubocop_todo.yml -AllCops: - RunRailsCops: true +Rails: + Enabled: true -Style/BracesAroundHashParameters: - EnforcedStyle: context_dependent +Layout/ExtraSpacing: + AllowForAlignment: true -Style/FileName: +Lint/PercentStringArray: + Exclude: + - 'config/initializers/secure_headers.rb' + - 'app/controllers/site_controller.rb' + +Naming/FileName: Exclude: - 'script/deliver-message' - 'script/locale/reload-languages' - 'script/update-spam-blocks' +Naming/UncommunicativeMethodParamName: + Enabled: false + +Rails/ApplicationRecord: + Enabled: false + +Rails/CreateTableWithTimestamps: + Enabled: false + +Rails/HasManyOrHasOneDependent: + Enabled: false + +Rails/HttpPositionalArguments: + Enabled: false + +Rails/InverseOf: + Enabled: false + +Rails/SkipsModelValidations: + Exclude: + - 'db/migrate/*.rb' + - 'app/controllers/user_controller.rb' + +Style/BracesAroundHashParameters: + EnforcedStyle: context_dependent + +Style/FormatStringToken: + EnforcedStyle: template + +Style/IfInsideElse: + Enabled: false + Style/GlobalVars: Exclude: - 'lib/quad_tile/extconf.rb' - + +Style/GuardClause: + Enabled: false + Style/HashSyntax: EnforcedStyle: hash_rockets Exclude: @@ -24,3 +64,6 @@ Style/HashSyntax: Style/StringLiterals: EnforcedStyle: double_quotes + +Style/SymbolArray: + EnforcedStyle: brackets