mirror of
https://github.com/diced/zipline.git
synced 2025-12-05 20:40:12 -08:00
10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
import { run, step } from '.';
|
|
import { lintStep } from './lint';
|
|
|
|
run(
|
|
'validate',
|
|
|
|
lintStep,
|
|
step('format', 'prettier --write --ignore-path .gitignore .'),
|
|
);
|