17 lines
346 B
YAML
17 lines
346 B
YAML
|
pre-push:
|
||
|
parallel: true
|
||
|
commands:
|
||
|
commit-check:
|
||
|
run: convco check
|
||
|
|
||
|
pre-commit:
|
||
|
parallel: true
|
||
|
commands:
|
||
|
dotnet-format-style:
|
||
|
glob: "*.cs"
|
||
|
run: dotnet format
|
||
|
prettier:
|
||
|
run: prettier . --write --loglevel warn
|
||
|
nixfmt:
|
||
|
run: nixfmt flake.nix
|