Skip to main content
Module

x/markup_tag/velociraptor.yml

Render markup tag easily
Go to Latest
File
scripts: deps: desc: Update dependencies with ensuring pass tests cmd: udd *.ts --test="vr test"
lint: desc: Runs lint cmd: deno lint --ignore=cov_profile
fmt: desc: Runs format cmd: deno fmt --ignore=cov_profile
pre-commit: desc: Lints and formats staged files cmd: | FILES=$(git diff --staged --name-only --diff-filter=ACMR "*.ts") [ -z "$FILES" ] && exit 0 echo "$FILES" | xargs deno lint echo "$FILES" | xargs deno fmt # echo "$FILES" | xargs git add gitHook: pre-commit
test: desc: Runs the tests cmd: deno test --reload gitHook: pre-push
cov: desc: Shows uncovered lists cmd: - vr test --coverage=cov_profile - deno coverage cov_profile
ci: desc: Runs lint, check format and test cmd: - vr lint - vr fmt --check - vr test
commitlint: # dependencies: commitlint and @commitlint/config-conventional # yarn global add commitlint @commitlint/config-conventional desc: Checks commit messages format with commitlint cmd: commitlint -x @commitlint/config-conventional -e ${GIT_ARGS[1]} gitHook: commit-msg