srctree

Robin Linden parent 34ec09ee 51d85858
Disable broken InvalidPackageDeclaration rule in detekt

We set a package prefix in the Gradle files so we don't have to havethat unreasonably deep folder structure most Gradle projects do, anddetekt doesn't seem to understand that. There are some configurationoptions to do with ignoring a part of a package, but setting that up ina multi-module project seems like too much work when ktlint alreadychecks this.

inlinesplit
.github/workflows/detekt.yaml added: 7, removed: 2, total 5
@@ -29,6 +29,8 @@ jobs:
continue-on-error: true
run: |
java -jar detekt \
--build-upon-default-config \
--config detekt.yml \
--input ${{ github.workspace }} \
--base-path ${{ github.workspace }} \
--report sarif:${{ github.workspace }}/detekt.sarif.json
 
filename was Deleted added: 7, removed: 2, total 5
@@ -0,0 +1,3 @@
naming:
InvalidPackageDeclaration:
active: false