From 1a7de5946736f7f3fdee8678193d2d1ec78a1c36 Mon Sep 17 00:00:00 2001 From: Jonathan Klee Date: Fri, 20 Oct 2023 14:49:13 +0200 Subject: [PATCH] Remove ktlint now that we have Detekt Too much lint is killing lint (: --- .gitlab-ci.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0494e88e6..3293d44a1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -51,14 +51,6 @@ lintDebug: paths: - app/build/reports/ -ktlintDebug: - extends: .lintDebugDefault - script: - - ./gradlew app:ktlintCheck --info - artifacts: - paths: - - app/build/reports/ktlint/ - # Release build related jobs # Default configuration for release builds @@ -130,15 +122,6 @@ lintRelease: - app/build/reports/ - build/reports/ -ktlintRelease: - extends: .lintReleaseDefault - script: - - ./gradlew app:ktlintCheck --info - artifacts: - paths: - - app/build/reports/ktlint/ - - pushToPrebuilt: stage: publish needs: ["buildRelease"] -- GitLab