Skip to content

Commit

Permalink
build(lint): reduce strictness of copy-paste detection #5985
Browse files Browse the repository at this point in the history
## Problem
Copy paste detection is very sensitive as the minLines is currently set
to 3.

## Solution
increase it to 10.
  • Loading branch information
Hweinstock authored Nov 12, 2024
1 parent 1c1fb06 commit 9a41a03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/jscpd.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"ignore": ["**node_modules**", "**dist**", "**/scripts/**"],
"gitignore": true,
"threshold": 3.0,
"minLines": 3,
"minLines": 10,
"output": "./",
"reporters": ["json"]
}

0 comments on commit 9a41a03

Please sign in to comment.