[mirror] Opinionated R package quickstart
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixed precommit

VisruthSK 05eee300 288f318c

+11 -2
+11 -2
inst/templates/pre-commit
··· 1 1 #!/usr/bin/env bash 2 2 set -euo pipefail 3 3 4 - air format . 5 - jarl check . --fix --allow-dirty 4 + air format . --check || { 5 + air format . 6 + echo "Air reformatted files. Stage and recommit." >&2 7 + exit 1 8 + } 9 + 10 + jarl check . || { 11 + jarl check . --fix --allow-dirty || true 12 + echo "Jarl fixed issues. Stage and recommit." >&2 13 + exit 1 14 + }