]> git.openstreetmap.org Git - rails.git/blobdiff - .rubocop.yml
Wrap table header rows in thead
[rails.git] / .rubocop.yml
index 5bf565c31f5060642551ea1c82dcd3d51740a3ef..c211cc2fdb02707384d2dd0286ff88349d3e08a4 100644 (file)
@@ -6,6 +6,8 @@ require:
 
 AllCops:
   TargetRubyVersion: 2.5
+  Exclude:
+    - 'vendor/**/*'
 
 Rails:
   Enabled: true
@@ -19,16 +21,21 @@ Lint/PercentStringArray:
     - 'app/controllers/application_controller.rb'
     - 'app/controllers/site_controller.rb'
 
+Metrics/BlockLength:
+  Exclude:
+    - 'config/routes.rb'
+
+Metrics/ClassLength:
+  Exclude:
+    - 'test/**/*'
+
 Naming/FileName:
   Exclude:
     - 'script/deliver-message'
     - 'script/locale/reload-languages'
     - 'script/update-spam-blocks'
 
-Naming/UncommunicativeMethodParamName:
-  Enabled: false
-
-Rails/ApplicationRecord:
+Naming/MethodParameterName:
   Enabled: false
 
 Rails/CreateTableWithTimestamps: