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
@@ -636,7 +636,7 @@
636
636
"type": "boolean",
637
637
"scope": "resource",
638
638
"default": true,
639
-
"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."
639
+
"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."
640
640
},
641
641
"d.enableStaticLinting": {
642
642
"order": 1,
@@ -652,11 +652,18 @@
652
652
"default": true,
653
653
"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."
654
654
},
655
-
"d.enableSDLLinting": {
655
+
"d.enableCcdbLinting": {
656
656
"order": 3,
657
657
"type": "boolean",
658
658
"scope": "resource",
659
659
"default": true,
660
+
"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."
661
+
},
662
+
"d.enableSDLLinting": {
663
+
"order": 4,
664
+
"type": "boolean",
665
+
"scope": "resource",
666
+
"default": true,
660
667
"markdownDescription": "Check `dub.sdl` files for errors and warnings.\n\nOnly has an effect if `#d.enableLinting#` is also turned on."
0 commit comments