2
1
mirror of https://github.com/Thream/api.git synced 2024-07-21 03:38:31 +02:00
api/.lintstagedrc.json

11 lines
251 B
JSON
Raw Normal View History

2021-10-24 04:18:18 +02:00
{
"*": ["editorconfig-checker"],
2022-02-07 17:18:11 +01:00
"*.{js,jsx,ts,tsx}": [
2021-10-24 04:18:18 +02:00
"prettier --write",
"eslint --fix",
"jest --findRelatedTests"
],
2022-02-07 17:18:11 +01:00
"*.{json,jsonc,yml,yaml}": ["prettier --write"],
2022-02-19 20:08:25 +01:00
"*.md": ["prettier --write", "markdownlint --dot --fix"]
2021-10-24 04:18:18 +02:00
}