Skip to content

Commit

Permalink
ci: detekt rule の更新
Browse files Browse the repository at this point in the history
  • Loading branch information
kinari321 committed Jan 21, 2023
1 parent 9df6c5e commit b453a91
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions config/detekt/detekt-override.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
---
# complexityのルール
complexity:
active: true
#
# LongParameterList
#
# 概要
# - コンストラクタの引数の数
# - 関数の引数の数
#
LongParameterList:
active: true
functionThreshold: 12 # (default: 6)
constructorThreshold: 12 # (default: 7)
ignoreDefaultParameters: false
ignoreDataClasses: true
ignoreAnnotatedParameter: []

# comments のルール
comments:
Expand Down

0 comments on commit b453a91

Please sign in to comment.