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
Copy file name to clipboardExpand all lines: package.json
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -629,7 +629,7 @@
629
629
"type": "boolean",
630
630
"scope": "resource",
631
631
"default": true,
632
-
"markdownDescription": "Enable errors and warnings (squiggly lines) while editing source code.\n\nTurning this off disables all diagnostics coming from code-d.You can toggle\n\n- `#d.enableSDLLinting#`\n- `#d.enableDubLinting#`\n- `#d.enableStaticLinting#`\n\nfor finer control instead."
632
+
"markdownDescription": "Enable errors and warnings (squiggly lines) while editing source code.\n\nTurning this off disables all diagnostics coming from code-d.You can toggle\n\n- `#d.enableSDLLinting#`\n- `#d.enableDubLinting#`\n- `\n- `#d.enableCcdbLinting#`\n- `#d.enableStaticLinting#`\n\nfor finer control instead."
633
633
},
634
634
"d.enableStaticLinting": {
635
635
"order": 1,
@@ -645,11 +645,18 @@
645
645
"default": true,
646
646
"markdownDescription": "Compile DUB projects on save to check for compile errors.\n\nThis is very similar to running `dub build` on the command line to see what actual errors occur, but does not output any executable or library.\n\nOnly has an effect if `#d.enableLinting#` is also turned on."
647
647
},
648
-
"d.enableSDLLinting": {
648
+
"d.enableCcdbLinting": {
649
649
"order": 3,
650
650
"type": "boolean",
651
651
"scope": "resource",
652
652
"default": true,
653
+
"markdownDescription": "Compile file with `compile_commands.json` on save to check for compile errors.\n\nOnly has an effect if `#d.ccdbPath` is set and `#d.enableLinting#` is also turned on."
654
+
},
655
+
"d.enableSDLLinting": {
656
+
"order": 4,
657
+
"type": "boolean",
658
+
"scope": "resource",
659
+
"default": true,
653
660
"markdownDescription": "Check `dub.sdl` files for errors and warnings.\n\nOnly has an effect if `#d.enableLinting#` is also turned on."
0 commit comments