X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4f4180e4bd28cd3e096a056941515f8c57278507..68213e381252addee172f329e3a52bc361a9499a:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index a0533b162..55be8141c 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,14 +1,73 @@ inherit_from: .rubocop_todo.yml -Style/BracesAroundHashParameters: - EnforcedStyle: context_dependent +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 + +Lint/PercentStringArray: + Exclude: + - 'config/initializers/secure_headers.rb' + - 'app/controllers/site_controller.rb' -Style/FileName: +Naming/FileName: Exclude: - 'script/deliver-message' - 'script/locale/reload-languages' - 'script/update-spam-blocks' +Rails/ApplicationRecord: + Enabled: false + +Rails/HasManyOrHasOneDependent: + Enabled: false + +Rails/HttpPositionalArguments: + 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 + +Style/GlobalVars: + Exclude: + - 'lib/quad_tile/extconf.rb' + +Style/GuardClause: + Enabled: false + Style/HashSyntax: EnforcedStyle: hash_rockets Exclude: @@ -17,3 +76,6 @@ Style/HashSyntax: Style/StringLiterals: EnforcedStyle: double_quotes + +Style/SymbolArray: + EnforcedStyle: brackets