Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/jsparagus/.githooks/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 264 B image not shown  

Quelle  pre-commit   Sprache: unbekannt

 
Spracherkennung für: .githooks/pre-commit vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

#!/usr/bin/env bash
#
# Simplified commit hook to format the files which were changed in the current commit
#

printf "[pre-commit] rustfmt"

for file in $(git diff --name-only --cached); do
  if [ ${file: -3} == ".rs" ];  then
    rustfmt $file
  fi
done

exit 0

[ Dauer der Verarbeitung: 0.34 Sekunden  ]