1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"$schema": "https://raw.githubusercontent.com/DanielGavin/ols/master/misc/ols.schema.json",
"collections": [
{
"name": "src",
"path": "src"
}
],
"profiles": [
{ "name": "linux_profile", "os": "linux", "checker_path": ["src/main.odin"]},
{ "name": "windows_profile", "os": "windows", "checker_path": ["src/main.odin", "src"]}
],
"profile": "windows_profile",
"enable_document_symbols": true,
"enable_semantic_tokens": true,
"enable_snippets": true,
"enable_references": true,
"enable_fake_methods": false,
"enable_inlay_hints": false,
"enable_procedure_snippet": false,
"verbose": false
}
|