You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'description': "True if the Arduino Language Server should generate log files into the sketch folder. Otherwise, false. It's false by default.",
11
-
'default': false
15
+
type: 'boolean',
16
+
description:
17
+
"True if the Arduino Language Server should generate log files into the sketch folder. Otherwise, false. It's false by default.",
18
+
default: false,
12
19
},
13
20
'arduino.compile.verbose': {
14
-
'type': 'boolean',
15
-
'description': 'True for verbose compile output. False by default',
16
-
'default': false
21
+
type: 'boolean',
22
+
description: 'True for verbose compile output. False by default',
23
+
default: false,
17
24
},
18
25
'arduino.compile.warnings': {
19
-
'enum': [...CompilerWarningLiterals],
20
-
'description': "Tells gcc which warning level to use. It's 'None' by default",
21
-
'default': 'None'
26
+
enum: [...CompilerWarningLiterals],
27
+
description:
28
+
"Tells gcc which warning level to use. It's 'None' by default",
29
+
default: 'None',
22
30
},
23
31
'arduino.upload.verbose': {
24
-
'type': 'boolean',
25
-
'description': 'True for verbose upload output. False by default.',
26
-
'default': false
32
+
type: 'boolean',
33
+
description: 'True for verbose upload output. False by default.',
34
+
default: false,
27
35
},
28
36
'arduino.upload.verify': {
29
-
'type': 'boolean',
30
-
'default': false
37
+
type: 'boolean',
38
+
default: false,
31
39
},
32
40
'arduino.window.autoScale': {
33
-
'type': 'boolean',
34
-
'description': 'True if the user interface automatically scales with the font size.',
35
-
'default': true
41
+
type: 'boolean',
42
+
description:
43
+
'True if the user interface automatically scales with the font size.',
44
+
default: true,
36
45
},
37
46
'arduino.window.zoomLevel': {
38
-
'type': 'number',
39
-
'description': 'Adjust the zoom level of the window. The original size is 0 and each increment above (e.g. 1) or below (e.g. -1) represents zooming 20% larger or smaller. You can also enter decimals to adjust the zoom level with a finer granularity.',
40
-
'default': 0
47
+
type: 'number',
48
+
description:
49
+
'Adjust the zoom level of the window. The original size is 0 and each increment above (e.g. 1) or below (e.g. -1) represents zooming 20% larger or smaller. You can also enter decimals to adjust the zoom level with a finer granularity.',
50
+
default: 0,
41
51
},
42
52
'arduino.ide.autoUpdate': {
43
-
'type': 'boolean',
44
-
'description': 'True to enable automatic update checks. The IDE will check for updates automatically and periodically.',
45
-
'default': true
53
+
type: 'boolean',
54
+
description:
55
+
'True to enable automatic update checks. The IDE will check for updates automatically and periodically.',
56
+
default: true,
46
57
},
47
58
'arduino.sketchbook.showAllFiles': {
48
-
'type': 'boolean',
49
-
'description': 'True to show all sketch files inside the sketch. It is false by default.',
50
-
'default': false
51
-
}
52
-
}
59
+
type: 'boolean',
60
+
description:
61
+
'True to show all sketch files inside the sketch. It is false by default.',
62
+
default: false,
63
+
},
64
+
'arduino.cloud.enabled': {
65
+
type: 'boolean',
66
+
description:
67
+
'True if the sketch sync functions are enabled. Defaults to true.',
68
+
default: true,
69
+
},
70
+
'arduino.cloud.pull.warn': {
71
+
type: 'boolean',
72
+
description:
73
+
'True if users should be warned before pulling a cloud sketch. Defaults to true.',
74
+
default: true,
75
+
},
76
+
'arduino.cloud.push.warn': {
77
+
type: 'boolean',
78
+
description:
79
+
'True if users should be warned before pushing a cloud sketch. Defaults to true.',
80
+
default: true,
81
+
},
82
+
'arduino.cloud.pushpublic.warn': {
83
+
type: 'boolean',
84
+
description:
85
+
'True if users should be warned before pushing a public sketch to the cloud. Defaults to true.',
86
+
default: true,
87
+
},
88
+
'arduino.cloud.sketchSyncEnpoint': {
89
+
type: 'string',
90
+
description:
91
+
'The endpoint used to push and pull sketches from a backend. By default it points to Arduino Cloud API.',
92
+
default: 'https://api2.arduino.cc/create',
93
+
},
94
+
'arduino.auth.clientID': {
95
+
type: 'string',
96
+
description: 'The OAuth2 client ID.',
97
+
default: 'C34Ya6ex77jTNxyKWj01lCe1vAHIaPIo',
98
+
},
99
+
'arduino.auth.domain': {
100
+
type: 'string',
101
+
description: 'The OAuth2 domain.',
102
+
default: 'login.arduino.cc',
103
+
},
104
+
'arduino.auth.audience': {
105
+
type: 'string',
106
+
description: 'The 0Auth2 audience.',
107
+
default: 'https://api.arduino.cc',
108
+
},
109
+
'arduino.auth.registerUri': {
110
+
type: 'string',
111
+
description: 'The URI used to register a new user.',
0 commit comments