]> git.openstreetmap.org Git - rails.git/blobdiff - .rubocop.yml
Rename stub_signup_requests to stub_hostip_requests
[rails.git] / .rubocop.yml
index 8187b269625a5594fcd7b69d389428ae5d420ad8..975457d9572a6670386e154be340781a44913299 100644 (file)
@@ -1,4 +1,42 @@
 inherit_from: .rubocop_todo.yml
 
+AllCops:
+  Include:
+    - '**/*.builder'
+
+Rails:
+  Enabled: 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/IfInsideElse:
+  Enabled: false
+
+Style/GlobalVars:
+  Exclude:
+    - 'lib/quad_tile/extconf.rb'
+
+Style/GuardClause:
+  Enabled: false
+
+Style/HashSyntax:
+  EnforcedStyle: hash_rockets
+  Exclude:
+    - 'lib/tasks/testing.rake'
+    - 'config/initializers/wrap_parameters.rb'
+
+Style/StringLiterals:
+  EnforcedStyle: double_quotes
+
+Rails/HttpPositionalArguments:
+  Enabled: false