X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/750484d1b5adb4ab9913b181d2f26b4a5a8476d0..d892a9be522729cf5f94c364aa70ce498f78b34e:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 19403fed5..e1f1724e0 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,7 +1,31 @@ inherit_from: .rubocop_todo.yml AllCops: - RunRailsCops: true + Include: + - '**/*.gemspec' + - '**/*.podspec' + - '**/*.jbuilder' + - '**/*.rake' + - '**/*.opal' + - '**/config.ru' + - '**/Gemfile' + - '**/Rakefile' + - '**/Capfile' + - '**/Guardfile' + - '**/Podfile' + - '**/Thorfile' + - '**/Vagrantfile' + - '**/Berksfile' + - '**/Cheffile' + - '**/Vagabondfile' + - '**/Fastfile' + - '**/*.builder' + +Rails: + Enabled: true + +Layout/ExtraSpacing: + AllowForAlignment: true Style/BracesAroundHashParameters: EnforcedStyle: context_dependent @@ -12,10 +36,19 @@ Style/FileName: - 'script/locale/reload-languages' - 'script/update-spam-blocks' +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 +57,22 @@ Style/HashSyntax: 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'