From f3213b52fadadfcca9a26e22a83d1ab83a68fbcf Mon Sep 17 00:00:00 2001 From: zebadgegdg Date: Wed, 5 Jul 2023 15:17:20 +0200 Subject: [PATCH 1/2] Pull request template --- zeapp/.github/pull_request_template.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 zeapp/.github/pull_request_template.md diff --git a/zeapp/.github/pull_request_template.md b/zeapp/.github/pull_request_template.md new file mode 100644 index 00000000..3a2cfd5e --- /dev/null +++ b/zeapp/.github/pull_request_template.md @@ -0,0 +1,19 @@ +## Summary + + + +## How It Was Tested + + + +## Screenshot/Gif + + + +
+ +Screenshot Name + + + +
\ No newline at end of file From 70ba194968ec387fbd1e65a610f8d27b88780d98 Mon Sep 17 00:00:00 2001 From: zebadgegdg Date: Wed, 5 Jul 2023 15:51:03 +0200 Subject: [PATCH 2/2] detekt config fix --- zeapp/config/detekt/detekt-config.yml | 58 ++++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 2 deletions(-) diff --git a/zeapp/config/detekt/detekt-config.yml b/zeapp/config/detekt/detekt-config.yml index 9977ab51..6808b179 100644 --- a/zeapp/config/detekt/detekt-config.yml +++ b/zeapp/config/detekt/detekt-config.yml @@ -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 \ No newline at end of file