Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit b453a91

Browse files
committed
ci: detekt rule の更新
1 parent 9df6c5e commit b453a91

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

config/detekt/detekt-override.yml

+17
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
11
---
2+
# complexityのルール
3+
complexity:
4+
active: true
5+
#
6+
# LongParameterList
7+
#
8+
# 概要
9+
# - コンストラクタの引数の数
10+
# - 関数の引数の数
11+
#
12+
LongParameterList:
13+
active: true
14+
functionThreshold: 12 # (default: 6)
15+
constructorThreshold: 12 # (default: 7)
16+
ignoreDefaultParameters: false
17+
ignoreDataClasses: true
18+
ignoreAnnotatedParameter: []
219

320
# comments のルール
421
comments:

0 commit comments

Comments
 (0)