fix: 修复 eslint 扁平化配置错误

将 lint-staged 配置中的 eslint 命令修改为 "eslint . --fix",以正确处理所有需要 lint 的文件。
之前的配置遗漏了对根目录下文件的处理,导致部分文件未被 lint。
This commit is contained in:
h_mo 2024-06-26 15:48:28 +08:00
parent 13388141d3
commit b26db07d1b

View File

@ -96,6 +96,6 @@
"commit-msg": "npx tsx ./scripts/verify-commit.ts"
},
"lint-staged": {
"*": "eslint --fix --ignore-pattern '*/androidPrivacy.json' --ignore-pattern 'README.md'"
"*": "eslint . --fix"
}
}