X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5b33f3f8e31c62bc3e5db1d5b120533c3afdde68..08e2a06e41eabddf029f5396d516bf683f749448:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index e1f1724e0..aa60df305 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,25 +1,16 @@ inherit_from: .rubocop_todo.yml +require: + - rubocop-minitest + - rubocop-performance + - rubocop-rails + - rubocop-rake + AllCops: - Include: - - '**/*.gemspec' - - '**/*.podspec' - - '**/*.jbuilder' - - '**/*.rake' - - '**/*.opal' - - '**/config.ru' - - '**/Gemfile' - - '**/Rakefile' - - '**/Capfile' - - '**/Guardfile' - - '**/Podfile' - - '**/Thorfile' - - '**/Vagrantfile' - - '**/Berksfile' - - '**/Cheffile' - - '**/Vagabondfile' - - '**/Fastfile' - - '**/*.builder' + TargetRubyVersion: 2.7 + NewCops: enable + Exclude: + - 'vendor/**/*' Rails: Enabled: true @@ -27,52 +18,89 @@ Rails: Layout/ExtraSpacing: AllowForAlignment: true -Style/BracesAroundHashParameters: - EnforcedStyle: context_dependent +Lint/PercentStringArray: + Exclude: + - 'config/initializers/secure_headers.rb' + - 'app/controllers/application_controller.rb' + - 'app/controllers/site_controller.rb' + +Metrics/BlockLength: + Exclude: + - 'config/routes.rb' -Style/FileName: +Metrics/ClassLength: + Exclude: + - 'test/**/*' + +Metrics/ModuleLength: + Max: 150 + +Naming/FileName: Exclude: - 'script/deliver-message' - - 'script/locale/reload-languages' - 'script/update-spam-blocks' -Style/FormatStringToken: - EnforcedStyle: template +Naming/MethodParameterName: + Enabled: false -Style/IfInsideElse: +Rails/CreateTableWithTimestamps: Enabled: false -Style/GlobalVars: +Rails/FindEach: + Enabled: false + +Rails/HasManyOrHasOneDependent: + Enabled: false + +Rails/HttpPositionalArguments: + Enabled: false + +Rails/InverseOf: + Enabled: false + +Rails/ReflectionClassName: + Enabled: false + +Rails/SkipsModelValidations: Exclude: - - 'lib/quad_tile/extconf.rb' + - 'db/migrate/*.rb' + - 'app/controllers/users_controller.rb' + +Style/Documentation: + Enabled: false + +Style/FormatStringToken: + Exclude: + - 'config/routes.rb' + +Style/IfInsideElse: + Enabled: false Style/GuardClause: Enabled: false +Style/HashEachMethods: + Enabled: true + Style/HashSyntax: EnforcedStyle: hash_rockets Exclude: - 'lib/tasks/testing.rake' - 'config/initializers/wrap_parameters.rb' +Style/HashTransformKeys: + Enabled: true + +Style/HashTransformValues: + Enabled: true + +Style/MixinUsage: + Exclude: + - 'bin/setup' + - 'bin/update' + Style/StringLiterals: EnforcedStyle: double_quotes Style/SymbolArray: EnforcedStyle: brackets - -Rails/ApplicationRecord: - Enabled: false - -Rails/HttpPositionalArguments: - Enabled: false - -Rails/SkipsModelValidations: - Exclude: - - 'db/migrate/*.rb' - - 'app/controllers/user_controller.rb' - -Lint/PercentStringArray: - Exclude: - - 'config/initializers/secure_headers.rb' - - 'app/controllers/site_controller.rb'