Initial commit

This commit is contained in:
Pratyush Mishra
2020-10-11 19:50:41 -07:00
commit 43ca2132fd
209 changed files with 18825 additions and 0 deletions

9
scripts/install-hook.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/env bash
# This script will install the provided directory ../.hooks as the hook
# directory for the present repo. See there for hooks, including a pre-commit
# hook that runs rustfmt on files before a commit.
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
HOOKS_DIR="${DIR}/../.hooks"
git config core.hooksPath "$HOOKS_DIR"