We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09f4981 commit 665f9fcCopy full SHA for 665f9fc
3 files changed
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## v1.1.1
4
+
5
+- fix: ignore empty files
6
7
## v1.1.0
8
9
`2021.02.19`
dist/index.js
@@ -5974,6 +5974,9 @@ async function run() {
5974
5975
if (!result) {
5976
const changeFiles = await getFiles();
5977
+ if (changeFiles.length == 0) {
5978
+ return false;
5979
+ }
5980
for (let i = 0; i < changeFiles.length; i += 1) {
5981
if (
5982
doVerifyFile(
src/main.js
@@ -65,6 +65,9 @@ async function run() {
65
66
67
68
69
70
71
72
73
0 commit comments