2 İşlemeler d4ddc6e03e ... e54d2ba15b

Yazar SHA1 Mesaj Tarih
  Owen Diffey e54d2ba15b chore: Disable MD059 markdown lint rule 6 gün önce
  Owen Diffey 1fffde64b1 fix(musare.sh): Pull images used for linting 6 gün önce
2 değiştirilmiş dosya ile 4 ekleme ve 3 silme
  1. 2 1
      .markdownlint.json
  2. 2 2
      musare.sh

+ 2 - 1
.markdownlint.json

@@ -3,5 +3,6 @@
         "tables": false
     },
     "MD024": false,
-    "MD041": false
+    "MD041": false,
+    "MD059": false
 }

+ 2 - 2
musare.sh

@@ -303,12 +303,12 @@ handleLinting()
     if [[ ${servicesString:2:4} == "all" || "${servicesString:2}" == *docs* ]]; then
         echo -e "${CYAN}Running docs lint...${NC}"
         # shellcheck disable=SC2086
-        ${docker} run --rm -v "${scriptLocation}":/workdir ghcr.io/igorshubovych/markdownlint-cli:latest ".wiki" "*.md" ${fix}
+        ${docker} run --rm -v "${scriptLocation}":/workdir --pull always ghcr.io/igorshubovych/markdownlint-cli:latest ".wiki" "*.md" ${fix}
         docsExitValue=$?
     fi
     if [[ ${servicesString:2:4} == "all" || "${servicesString:2}" == *shell* ]]; then
         echo -e "${CYAN}Running shell lint...${NC}"
-        ${docker} run --rm -v "${scriptLocation}":/mnt koalaman/shellcheck:stable ./*.sh ./**/*.sh
+        ${docker} run --rm -v "${scriptLocation}":/mnt --pull always koalaman/shellcheck:stable ./*.sh ./**/*.sh
         shellExitValue=$?
     fi
     set -e