-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathols.json
30 lines (29 loc) · 980 Bytes
/
ols.json
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
{
"$schema": "https://raw.githubusercontent.com/DanielGavin/ols/master/misc/ols.schema.json",
"collections": [
{ "name": "src", "path": "src" },
{ "name": "deps", "path": "deps" }
],
"thread_pool_count": 2,
"enable_semantic_tokens": true,
"enable_document_symbols": true,
"enable_format": true,
"enable_hover": true,
"enable_procedure_context": true,
"enable_snippets": true,
"enable_inlay_hints": false,
"enable_references": true,
"enable_fake_methods": true,
"enable_procedure_snippet": true,
"enable_checker_only_saved": false,
"disable_parser_errors": false,
"verbose": true,
"checker_args": "-vet -disallow-do -warnings-as-errors",
"profile": "default",
"profiles": [
{ "name": "default", "checker_path": ["src"] },
{ "name": "linux", "os": "linux", "checker_path": ["src"] },
{ "name": "windows", "os": "windows", "checker_path": ["src"] },
{ "name": "darwin", "os": "darwin", "checker_path": ["src"] }
]
}