[mirror] Opinionated R package quickstart
0
fork

Configure Feed

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

at main 14 lines 272 B view raw
1#!/usr/bin/env bash 2set -euo pipefail 3 4air format . --check || { 5 air format . 6 echo "Air reformatted files. Stage and recommit." >&2 7 exit 1 8} 9 10jarl check . || { 11 jarl check . --fix --allow-dirty || true 12 echo "Jarl fixed issues. Stage and recommit." >&2 13 exit 1 14}