conky/lefthook.yml

25 lines
614 B
YAML
Raw Permalink Normal View History

pre-commit:
2023-03-01 03:41:20 +00:00
parallel: true
commands:
web-linter:
run: |
2023-06-26 23:30:22 +00:00
npx -y eslint --fix {staged_files} \
&& git add {staged_files}
root: web/
glob: '*.{ts,tsx,js,jsx}'
cpp-linter:
run: |
clang-format -i {staged_files} \
&& git add {staged_files}
glob: '*.{c,cc,cxx,h,cpp}'
misc-linter:
run: |
2023-06-26 23:30:22 +00:00
npx -y prettier --write {staged_files} \
&& git add {staged_files}
glob: '*.{md,json,yml,yaml}'
nix-linter:
run: |
alejandra -q {staged_files} \
&& git add {staged_files}
glob: '*.{nix}'