X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a6b84a0294a2929006ff056f56103be549c5b5a2..895b4e72ab7f1c24c17fdbb0b60beb1a2f573551:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index dce00b925..e1f1724e0 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,5 +1,32 @@ inherit_from: .rubocop_todo.yml +AllCops: + 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 @@ -9,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: @@ -21,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'