mirror of
https://github.com/run-llama/workflows-ts.git
synced 2026-07-21 06:05:23 -04:00
7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
import type { Configuration } from "lint-staged";
|
|
|
|
export default {
|
|
"*.{js,jsx,ts,tsx}": ["prettier --write"],
|
|
"*.{json,md,yml}": ["prettier --write"],
|
|
} satisfies Configuration;
|