aboutsummaryrefslogtreecommitdiff
path: root/misc/ols.schema.json
blob: cc5941f3b4f78d70bd154bcc6094dfe0cdb86309 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
	"$schema": "http://json-schema.org/draft-07/schema#",
	"type": "object",
	"properties": {
		"collections": {
			"type": "array",
			"items": {
				"type": "object",
				"properties": {
					"name": { "type": "string" },
					"path": { "type": "string" }
				},
				"required": ["name", "path"],
				"additionalProperties": false
			}
		},
		"thread_pool_count": { "type": "integer" },
		"enable_checker_only_saved": {
			"type": "boolean",
			"description": "Turns on only calling the checker on the package being saved"
		},
		"enable_semantic_tokens": {
			"type": "boolean",
			"description": "Turns on syntax highlighting."
		},
		"enable_document_symbols": {
			"type": "boolean",
			"description": "Turns on outline of all your global declarations in your document."
		},
		"enable_format": {
			"type": "boolean",
			"description": "Turns on formatting with odinfmt.",
			"default": true
		},
		"enable_hover": {
			"type": "boolean",
			"description": "Enables hover feature"
		},
		"enable_procedure_context": { "type": "boolean" },
		"enable_snippets": {
			"type": "boolean",
			"description": "Turns on builtin snippets"
		},
		"enable_inlay_hints": {
			"type": "boolean",
			"description": "Turn on inlay hints for editors that support it."
		},
		"enable_inlay_hints_params": {
			"type": "boolean",
			"description": "Turn on inlay hints for (non-default) parameters.",
			"default": true
		},
		"enable_inlay_hints_default_params": {
			"type": "boolean",
			"description": "Turn on inlay hints for default parameters.",
			"default": true
		},
		"enable_procedure_snippet": {
			"type": "boolean",
			"description": "Use snippets when completing procedures—adds parenthesis after the name.",
			"default": true
		},
		"enable_references": { "type": "boolean" },
		"enable_fake_methods": {
			"type": "boolean",
			"description": "Turn on fake methods completion."
		},
		"disable_parser_errors": { "type": "boolean" },
		"verbose": {
			"type": "boolean",
			"description": "Logs warnings instead of just errors."
		},
		"file_log": { "type": "boolean" },
		"odin_command": {
			"type": "string",
			"description": "Allows you to specify your Odin location, instead of just relying on the environment path."
		},
		"checker_args": {
			"type": "string",
			"description": "Pass custom arguments to `odin check`."
		},
		"profile": {
			"type": "string",
			"description": "What profile to currently use."
		},
		"profiles": {
			"type": "array",
			"description": "List of different profiles that describe the environment ols is running under.",
			"items": {
				"type": "object",
				"properties": {
					"name": {
						"type": "string",
						"description": "The name of the profile."
					},
					"os": {
						"type": "string",
						"description": "The operating system for the profile."
					},
					"checker_path": {
						"type": "array",
						"description": "List of paths where to run the checker.",
						"items": {
							"type": "string"
						}
					}
				},
				"required": ["name", "checker_path"],
				"additionalProperties": false
			}
		}
	},
	"required": []
}