This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
api/.lintstagedrc.json
2022-02-07 16:18:11 +00:00

11 lines
253 B
JSON

{
"*": ["editorconfig-checker"],
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"jest --findRelatedTests"
],
"*.{json,jsonc,yml,yaml}": ["prettier --write"],
"*.{md}": ["prettier --write", "markdownlint --dot --fix"]
}