-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.jscpd.json
More file actions
37 lines (37 loc) · 751 Bytes
/
Copy path.jscpd.json
File metadata and controls
37 lines (37 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"threshold": 10,
"reporters": ["console", "json"],
"ignore": [
"**/.git/**",
"**/node_modules/**",
"**/dist/**",
"**/build/**",
"**/target/**",
"**/.beads/**",
"**/.direnv/**",
"**/.pi/**",
"**/.workspaces/**",
"**/.jj-workspaces/**",
"**/result/**",
"**/.jscpd-report/**",
"flake.lock",
"**/package-lock.json",
"**/bun.lock",
"**/*.lock",
"**/*.md5",
"**/*.hex"
],
"format": ["typescript", "javascript", "nix"],
"min-lines": 5,
"min-tokens": 50,
"max-lines": 500,
"max-size": "100kb",
"mode": "strict",
"blame": false,
"silent": false,
"absolute": false,
"noSymlinks": true,
"skipLocal": false,
"gitignore": true,
"output": ".jscpd-report"
}