Files
chat/.lintstagedrc.json
2026-04-25 16:36:34 +08:00

13 lines
256 B
JSON

{
"src/*.{json,less}": [
"prettier --write --config ./.prettierrc.json"
],
"./**/*.js": [
"prettier --write --config ./.prettierrc.json"
],
"./**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write --config ./.prettierrc.json"
]
}