X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c8671c137ab09e8b93444d8a56d4a72d70014bf9..11e81c5398bb43d35c1b12421f7a6be2ca5b7047:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 477b2ab02..9b7a28d87 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,64 +1,102 @@ inherit_from: .rubocop_todo.yml +require: + - rubocop-minitest + - rubocop-performance + - rubocop-rails + AllCops: - Include: - - '**/*.gemspec' - - '**/*.podspec' - - '**/*.jbuilder' - - '**/*.rake' - - '**/*.opal' - - '**/config.ru' - - '**/Gemfile' - - '**/Rakefile' - - '**/Capfile' - - '**/Guardfile' - - '**/Podfile' - - '**/Thorfile' - - '**/Vagrantfile' - - '**/Berksfile' - - '**/Cheffile' - - '**/Vagabondfile' - - '**/Fastfile' - - '**/*.builder' + TargetRubyVersion: 2.5 + NewCops: enable + Exclude: + - 'vendor/**/*' 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' + +Metrics/BlockLength: + Exclude: + - 'config/routes.rb' + +Metrics/ClassLength: + Exclude: + - 'test/**/*' + +Metrics/ModuleLength: + Max: 150 + +Naming/FileName: Exclude: - 'script/deliver-message' - - 'script/locale/reload-languages' - 'script/update-spam-blocks' -Style/IfInsideElse: +Naming/MethodParameterName: Enabled: false -Style/GlobalVars: +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/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/StringLiterals: - EnforcedStyle: double_quotes +Style/HashTransformKeys: + Enabled: true -Rails/HttpPositionalArguments: - Enabled: false +Style/HashTransformValues: + Enabled: true -Rails/SkipsModelValidations: +Style/MixinUsage: Exclude: - - 'db/migrate/*.rb' - - 'app/controllers/user_controller.rb' + - 'bin/setup' + - 'bin/update' + +Style/StringLiterals: + EnforcedStyle: double_quotes + +Style/SymbolArray: + EnforcedStyle: brackets