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.
website/.lintstagedrc.json

11 lines
265 B
JSON
Raw Normal View History

2021-10-24 05:48:06 +02:00
{
"*": ["editorconfig-checker"],
"*.{js,jsx,ts,tsx}": [
2021-10-24 05:48:06 +02:00
"prettier --write",
"eslint --fix",
"jest --findRelatedTests"
],
"*.{css,scss,sass,json,jsonc,yml,yaml}": ["prettier --write"],
"*.md": ["prettier --write", "markdownlint --dot --fix"]
2021-10-24 05:48:06 +02:00
}