-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathasm-lsp_config_schema.json
91 lines (91 loc) · 2.92 KB
/
asm-lsp_config_schema.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
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
{
"$id": "asm-lsp_config_schema.json",
"$schema": "http://json-schema.org/schema",
"title": "asm-lsp Configuration Schema",
"description": "Configuration for asm-lsp.",
"type": "object",
"properties": {
"version": {
"description": "Config version number.",
"type": "string"
},
"assemblers": {
"description": "Options to manage assembler-dependent features.",
"type": "object",
"properties": {
"gas": {
"description": "Flag to turn features related to the GNU Assembler on/off.",
"type": "boolean"
},
"go": {
"description": "Flag to turn features related to the Go Assembler on/off.",
"type": "boolean"
},
"z80": {
"description": "Flag to turn features related to the z80 Assembler on/off.",
"type": "boolean"
},
"masm": {
"description": "Flag to turn features related to the MASM Assembler on/off.",
"type": "boolean"
},
"nasm": {
"description": "Flag to turn features related to the NASM Assembler on/off.",
"type": "boolean"
}
},
"required": []
},
"instruction_sets": {
"description": "Options to manage instruction set-dependent features.",
"type": "object",
"properties": {
"x86": {
"description": "Flag to turn features related to the x86 instruction set on/off.",
"type": "boolean"
},
"x86_64": {
"description": "Flag to turn features related to the x86_64 instruction set on/off.",
"type": "boolean"
},
"z80": {
"description": "Flag to turn features related to the z80 instruction set on/off.",
"type": "boolean"
},
"arm": {
"description": "Flag to turn features related to the arm instruction set on/off.",
"type": "boolean"
},
"arm64": {
"description": "Flag to turn features related to the arm64 instruction set on/off.",
"type": "boolean"
},
"riscv": {
"description": "Flag to turn features related to the riscv instruction set on/off.",
"type": "boolean"
}
},
"required": []
},
"opts": {
"description": "Options to modify the server's behavior.",
"type": "object",
"properties": {
"compiler": {
"description": "Compiler to use to invoke provided or default compile commands.",
"type": "string"
},
"diagnostics": {
"description": "Flag to enable or disable the server's diagnostics feature.",
"type": "boolean"
},
"default_diagnostics": {
"description": "Flag to enable or disable the server's default diagnostics feature.",
"type": "boolean"
}
}
},
"required": []
},
"required": ["version", "assemblers", "instruction_sets"]
}