删除 start/build:web/format:check,简化 check 为 typecheck+lint+test 引入 eslint-plugin-prettier 将 Prettier 集成至 ESLint,统一质量检查入口 简化 lint-staged 配置,扩展 clean 清理范围至 dist/
5 lines
85 B
JSON
5 lines
85 B
JSON
{
|
|
"*.{ts,tsx}": ["eslint --fix"],
|
|
"*.{md,json,yaml,yml}": ["prettier --write"]
|
|
}
|