-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathconfig.json.example
More file actions
45 lines (45 loc) · 1.06 KB
/
Copy pathconfig.json.example
File metadata and controls
45 lines (45 loc) · 1.06 KB
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
38
39
40
41
42
43
44
45
{
"processing": {
"num_workers": 4,
"enable_cache": true,
"cache_dir": ".cache",
"max_file_size_mb": 10
},
"detector": {
"min_similarity": 0.8,
"enable_semantic_match": true,
"ignore_comments": true,
"ignore_whitespace": true,
"max_line_distance": 100,
"context_lines": 5
},
"analyzer": {
"languages": ["go"],
"parse_comments": true,
"parse_imports": true,
"parse_types": true
},
"reporter": {
"output_format": "html",
"include_source": true,
"group_by_severity": true,
"min_severity": "low",
"template_dir": "web/templates"
},
"logging": {
"level": "info",
"file": "movery.log",
"format": "text",
"include_timestamp": true
},
"security": {
"max_memory_gb": 8.0,
"timeout_seconds": 3600,
"exclude_patterns": [
"vendor/**",
"node_modules/**",
"**/*_test.go",
"**/*.min.js"
]
}
}