veza/.lintstagedrc.json

16 lines
569 B
JSON
Raw Permalink Normal View History

{
"apps/web/**/*.{ts,tsx}": [
"bash -c 'cd apps/web && npx eslint --max-warnings=0 --fix \"$@\"' --",
"bash -c 'cd apps/web && npx tsc --noEmit -p tsconfig.json'"
],
"apps/web/**/*.{js,jsx,json,css,md}": ["prettier --write"],
"veza-backend-api/**/*.go": [
"bash -c 'cd veza-backend-api && gofmt -l -w \"$@\"' --",
"bash -c 'cd veza-backend-api && go vet ./...'"
],
"veza-stream-server/**/*.rs": [
"bash -c 'cd veza-stream-server && cargo fmt --'"
],
"*.{json,md,yml,yaml}": ["prettier --write"]
}