Skip to content

Commit

Permalink
gh-action: set detekt config for maxlen and toomanyfns
Browse files Browse the repository at this point in the history
  • Loading branch information
hussainmohd-a authored Apr 10, 2024
1 parent 0a85818 commit 37a90dd
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/detekt-config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
formatting:
MaxLineLength:
active: true
maxLineLength: 120
ignoreBackTickedIdentifier: false
complexity:
MaxLineLength:
active: false
TooManyFunctions:
active: false
TooManyFunctions:
active: true
max: 2
excludedFunctions: ['equals']
excludeLabeled: false
excludeReturnFromLambda: true
excludeGuardClauses: false



0 comments on commit 37a90dd

Please sign in to comment.