marko/.lintstagedrc.json
2024-01-09 14:31:31 -07:00

10 lines
312 B
JSON

{
"$schema": "https://json.schemastore.org/lintstagedrc.schema.json",
"*.{ts,js}": ["eslint --fix", "prettier --write --with-node-modules"],
"*.{json,md,css}": ["prettier --write --with-node-modules"],
"./package.json": [
"prettier --write --with-node-modules",
"sort-package-json --quiet"
]
}