check-files-pre-commit
有一些配置文件只能在本地修改,不能够提交到代码库当中,check-files 可以在 pre-commit hook 中检查是否有这类文件被修改,需要结合 pre-commit 模块使用,配置方式:
{
"scripts": {
"check-files": "check-files path/to/file1 path/to/file2"
},
"pre-commit": ["check-files"]
}
有一些配置文件只能在本地修改,不能够提交到代码库当中,check-files 可以在 pre-commit hook 中检查是否有这类文件被修改,需要结合 pre-commit 模块使用,配置方式:
{
"scripts": {
"check-files": "check-files path/to/file1 path/to/file2"
},
"pre-commit": ["check-files"]
}
npm i check-files-pre-commit
1
0.0.4
MIT