]> git.openstreetmap.org Git - rails.git/blobdiff - .rubocop.yml
Rework coordinates to avoid scientific formatting of small numbers. Fixes #1509
[rails.git] / .rubocop.yml
index e99b88edc170bda2a77db1f824a8bb4ab55ee533..e1f1724e0f995623182ed9025b71b5dbdfd65bf5 100644 (file)
@@ -1,23 +1,44 @@
 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
 
-Performance/RedundantMerge:
-  Enabled: false
+Layout/ExtraSpacing:
+  AllowForAlignment: true
 
 Style/BracesAroundHashParameters:
   EnforcedStyle: context_dependent
 
-Style/ExtraSpacing:
-  AllowForAlignment: true
-
 Style/FileName:
   Exclude:
     - 'script/deliver-message'
     - 'script/locale/reload-languages'
     - 'script/update-spam-blocks'
 
+Style/FormatStringToken:
+  EnforcedStyle: template
+
 Style/IfInsideElse:
   Enabled: false
 
@@ -37,6 +58,21 @@ Style/HashSyntax:
 Style/StringLiterals:
   EnforcedStyle: double_quotes
 
-Style/WordArray:
+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:
-    - 'test/models/message_test.rb'
+    - 'config/initializers/secure_headers.rb'
+    - 'app/controllers/site_controller.rb'