X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f02729fa9a29089224502fecc7bf347fa73db0dd..724d92d5f1992a2327982144e66697516ab82d8b:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 7b8ced040..24d57fb37 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,24 +1,52 @@ inherit_from: .rubocop_todo.yml -AllCops: - Include: - - '**/*.builder' - Rails: Enabled: true -Style/BracesAroundHashParameters: - EnforcedStyle: context_dependent - -Style/ExtraSpacing: +Layout/ExtraSpacing: AllowForAlignment: true -Style/FileName: +Lint/PercentStringArray: + Exclude: + - 'config/initializers/secure_headers.rb' + - 'app/controllers/application_controller.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 @@ -35,5 +63,13 @@ Style/HashSyntax: - '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