mirror of
https://github.com/run-llama/workflows-ts.git
synced 2026-07-21 06:05:23 -04:00
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
/**
|
|
* @filename: lint-staged.config.js
|
|
* @type {import('lint-staged').Configuration}
|
|
*/
|
|
export default {
|
|
"*.{js,jsx,ts,tsx}": ["prettier --write"],
|
|
"*.{json,md,yml}": ["prettier --write"],
|
|
};
|