2
2
mirror of https://github.com/Thream/website.git synced 2024-07-12 21:30:11 +02:00
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
}