Files
zipline/scripts/validate.ts
2025-09-03 00:00:04 -07:00

10 lines
167 B
TypeScript

import { run, step } from '.';
import { lintStep } from './lint';
run(
'validate',
lintStep,
step('format', 'prettier --write --ignore-path .gitignore .'),
);