Skip to content

Commit

Permalink
Pull request template from @alisen (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
louis993546 authored Jul 5, 2023
2 parents 7fd6ea9 + 35d91e7 commit b6cd525
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 2 deletions.
19 changes: 19 additions & 0 deletions zeapp/.github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## Summary

<!--Provide a summary of this Pull Request. -->

## How It Was Tested

<!-- Explain how you tested this change before merging. -->

## Screenshot/Gif

<!-- If applicable, show off the user facing changes. -->

<details>

<summary>Screenshot Name</summary>

<!-- file here -->

</details>
58 changes: 56 additions & 2 deletions zeapp/config/detekt/detekt-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,67 @@ style:
ReturnCount:
max: 5

UnusedParameter:
active: false

ForbiddenComment:
active: false

MagicNumber:
active: false

WildcardImport:
active: false
excludeImports: [ ]

NewLineAtEndOfFile:
active: false

complexity:
LongParameterList:
constructorThreshold: 15


TooManyFunctions:
thresholdInFiles: 16
ignorePrivate: true
active: false

CyclomaticComplexMethod:
active: false

NestedBlockDepth:
active: false

ComplexCondition:
threshold: 10

LongMethod:
threshold: 100

naming:
FunctionNaming:
active: false

TopLevelPropertyNaming:
active: false


exceptions:
active: true
ExceptionRaisedInUnexpectedLocation:
active: false
methodNames: 'toString,hashCode,equals,finalize'
InstanceOfCheckForException:
active: false
NotImplementedDeclaration:
active: false
PrintStackTrace:
active: false
TooGenericExceptionCaught:
active: false
SwallowedException:
active: false

performance:
active: false
ForEachOnRange:
active: false

0 comments on commit b6cd525

Please sign in to comment.