]> git.openstreetmap.org Git - rails.git/blobdiff - .rubocop.yml
Credit the whole of UCL, rather than just the Bartlett / VR centre.
[rails.git] / .rubocop.yml
index e99b88edc170bda2a77db1f824a8bb4ab55ee533..a31adf03bed73486bfb2c7f532ab61aad0cad8e3 100644 (file)
@@ -1,11 +1,29 @@
 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
-
 Style/BracesAroundHashParameters:
   EnforcedStyle: context_dependent
 
@@ -37,6 +55,15 @@ Style/HashSyntax:
 Style/StringLiterals:
   EnforcedStyle: double_quotes
 
-Style/WordArray:
+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'