Skip to content

Commit 9a41a03

Browse files
authored
build(lint): reduce strictness of copy-paste detection #5985
## Problem Copy paste detection is very sensitive as the minLines is currently set to 3. ## Solution increase it to 10.
1 parent 1c1fb06 commit 9a41a03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/jscpd.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"ignore": ["**node_modules**", "**dist**", "**/scripts/**"],
44
"gitignore": true,
55
"threshold": 3.0,
6-
"minLines": 3,
6+
"minLines": 10,
77
"output": "./",
88
"reporters": ["json"]
99
}

0 commit comments

Comments
 (0)