diff options
| author | Adam Malczewski <[email protected]> | 2026-04-01 17:12:10 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-04-01 17:12:10 +0900 |
| commit | 77a09e59e54540841d7c2cdbe7b6d0f4d1418744 (patch) | |
| tree | b7e9cdbc6c3669bb49675a37435921ee11238289 /.rubocop.yml | |
| parent | 9aacecab709bd7315a97675750e1874d858bdeef (diff) | |
| download | dispatch-adapter-copilot-77a09e59e54540841d7c2cdbe7b6d0f4d1418744.tar.gz dispatch-adapter-copilot-77a09e59e54540841d7c2cdbe7b6d0f4d1418744.zip | |
add model and pricing info
Diffstat (limited to '.rubocop.yml')
| -rw-r--r-- | .rubocop.yml | 23 |
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 |
