From 88f6870aa1b4b3fbc8b89e7cc023fae777862897 Mon Sep 17 00:00:00 2001 From: Fingercomp Date: Sun, 3 Aug 2025 00:15:48 +0300 Subject: [PATCH] Rip out scalafmt from the CI pipeline How can Scala people be satisfied with such a defective tool? It takes all the bad parts of clang-format and none of the good ones. It can't even enfore the official Scala style guide! Anyway, I'm open to adding it back as long as it's set up to only check files that have been modified in a MR or a commit. But I, personally, don't feel like digging through giant piles of yaml to accomplish that. --- .gitlab-ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 87b8234..a3954dd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,13 +29,14 @@ test: script: - sbt test -scalafmt: - stage: test - allow_failure: true - before_script: - - sbt -v sbtVersion - script: - - sbt scalafmtCheckAll +# Rest in piece. +#scalafmt: +# stage: test +# allow_failure: true +# before_script: +# - sbt -v sbtVersion +# script: +# - sbt scalafmtCheckAll build: stage: build