mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
12 lines
313 B
YAML
12 lines
313 B
YAML
pre-commit:
|
|
parallel: true
|
|
jobs:
|
|
- name: format
|
|
glob: "*.{css,js,json,jsonc,jsx,md,ts,tsx,yaml,yml}"
|
|
run: npm run format:check:files -- {staged_files}
|
|
- name: lint
|
|
glob: "*.{js,jsx,ts,tsx}"
|
|
run: npm run lint -- {staged_files}
|
|
- name: typecheck
|
|
run: npm run typecheck
|