summaryrefslogtreecommitdiffhomepage
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-04-01 17:12:10 +0900
committerAdam Malczewski <[email protected]>2026-04-01 17:12:10 +0900
commit77a09e59e54540841d7c2cdbe7b6d0f4d1418744 (patch)
treeb7e9cdbc6c3669bb49675a37435921ee11238289 /.rubocop.yml
parent9aacecab709bd7315a97675750e1874d858bdeef (diff)
downloaddispatch-adapter-copilot-77a09e59e54540841d7c2cdbe7b6d0f4d1418744.tar.gz
dispatch-adapter-copilot-77a09e59e54540841d7c2cdbe7b6d0f4d1418744.zip
add model and pricing info
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml23
1 files changed, 21 insertions, 2 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 4762417..37b7a19 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -13,13 +13,32 @@ Style/FrozenStringLiteralComment:
EnforcedStyle: always
Metrics/MethodLength:
- Max: 20
+ Max: 40
Metrics/ClassLength:
- Max: 500
+ Enabled: false
+
+Metrics/BlockLength:
+ Exclude:
+ - "spec/**/*"
+
+Metrics/ParameterLists:
+ Enabled: false
+
+Metrics/AbcSize:
+ Enabled: false
+
+Metrics/CyclomaticComplexity:
+ Enabled: false
+
+Metrics/PerceivedComplexity:
+ Enabled: false
Layout/LineLength:
Enabled: false
Style/Documentation:
Enabled: false
+
+Style/RedundantStructKeywordInit:
+ Enabled: false