File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 918
918
"order" : 1 ,
919
919
"markdownDescription" : " Array of workspace-relative (or absolute) folders to force start a project instance in."
920
920
},
921
+ "d.ccdbPath" : {
922
+ "type" : " string" ,
923
+ "scope" : " resource" ,
924
+ "default" : null ,
925
+ "description" : " Path to a Clang compilation database (aka. CCDB, aka. `compile_commands.json`) to use to lint this project"
926
+ },
921
927
"d.dmdPath" : {
922
928
"type" : " string" ,
923
929
"scope" : " machine-overridable" ,
Original file line number Diff line number Diff line change @@ -222,7 +222,8 @@ async function startClient(context: vscode.ExtensionContext) {
222
222
vscode . workspace . createFileSystemWatcher ( "**/*.d" ) ,
223
223
vscode . workspace . createFileSystemWatcher ( "**/dub.json" ) ,
224
224
vscode . workspace . createFileSystemWatcher ( "**/dub.sdl" ) ,
225
- vscode . workspace . createFileSystemWatcher ( "**/profilegc.log" )
225
+ vscode . workspace . createFileSystemWatcher ( "**/profilegc.log" ) ,
226
+ vscode . workspace . createFileSystemWatcher ( "**/compile_commands.json" ) ,
226
227
]
227
228
} ,
228
229
revealOutputChannelOn : RevealOutputChannelOn . Never ,
You can’t perform that action at this time.
0 commit comments