X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/750484d1b5adb4ab9913b181d2f26b4a5a8476d0..357060d96faad761a677b1027fa42c25805bac01:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 19403fed5..cbd62a052 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,26 +1,91 @@ inherit_from: .rubocop_todo.yml +require: + - rubocop-performance + - rubocop-rails + AllCops: - RunRailsCops: true + TargetRubyVersion: 2.5 + Exclude: + - 'vendor/**/*' -Style/BracesAroundHashParameters: - EnforcedStyle: context_dependent +Rails: + Enabled: true + +Layout/ExtraSpacing: + AllowForAlignment: true + +Lint/PercentStringArray: + Exclude: + - 'config/initializers/secure_headers.rb' + - 'app/controllers/application_controller.rb' + - 'app/controllers/site_controller.rb' -Style/FileName: +Metrics/BlockLength: + Exclude: + - 'config/routes.rb' + +Metrics/ClassLength: + Exclude: + - 'test/**/*' + +Naming/FileName: Exclude: - 'script/deliver-message' - 'script/locale/reload-languages' - 'script/update-spam-blocks' -Style/GlobalVars: +Naming/UncommunicativeMethodParamName: + Enabled: false + +Rails/ApplicationRecord: + Enabled: false + +Rails/CreateTableWithTimestamps: + Enabled: false + +Rails/FindEach: + Enabled: false + +Rails/HasManyOrHasOneDependent: + Enabled: false + +Rails/HttpPositionalArguments: + Enabled: false + +Rails/InverseOf: + Enabled: false + +Rails/SkipsModelValidations: Exclude: - - 'lib/quad_tile/extconf.rb' - + - 'db/migrate/*.rb' + - 'app/controllers/users_controller.rb' + +Style/BracesAroundHashParameters: + EnforcedStyle: context_dependent + +Style/FormatStringToken: + EnforcedStyle: template + +Style/IfInsideElse: + Enabled: false + +Style/GuardClause: + Enabled: false + Style/HashSyntax: EnforcedStyle: hash_rockets Exclude: - 'lib/tasks/testing.rake' - 'config/initializers/wrap_parameters.rb' +Style/MixinUsage: + Exclude: + - 'bin/setup' + - 'bin/update' + Style/StringLiterals: EnforcedStyle: double_quotes + +Style/SymbolArray: + EnforcedStyle: brackets