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
**Cppcheck Lite** is a minimalistic Visual Studio Code extension that runs [cppcheck](https://cppcheck.sourceforge.net/) against C/C++ files upon save and reports any warnings or errors in the Problems panel.
3
+
**Cppcheck Official** is a minimalistic Visual Studio Code extension that runs [cppcheck](https://cppcheck.sourceforge.net/) against C/C++ files upon save and reports any warnings or errors in the Problems panel.
4
4
5
5
## Features
6
6
@@ -14,7 +14,7 @@
14
14
15
15
**Cppcheck** must be installed on your system.
16
16
- By default, this extension looks for `cppcheck` on the system PATH.
17
-
- Alternatively, specify a custom executable path using the `cppcheck-lite.path` setting.
17
+
- Alternatively, specify a custom executable path using the `cppcheck-official.path` setting.
18
18
19
19
Examples of installing Cppcheck:
20
20
- On Linux (Debian/Ubuntu), install via `sudo apt-get install cppcheck`.
@@ -23,17 +23,16 @@ Examples of installing Cppcheck:
23
23
24
24
## Extension Settings
25
25
26
-
This extension contributes the following settings under `cppcheck-lite.*`:
26
+
This extension contributes the following settings under `cppcheck-official.*`:
27
27
28
-
-**`cppcheck-lite.enable`**: (boolean) Enable or disable the extension.
29
-
-**`cppcheck-lite.minSeverity`**: (string) Minimum severity to report (`info`, `warning`, or `error`). `info` shows style, performance, portability and information messages.
30
-
-**`cppcheck-lite.standard`**: (string) Sets the C/C++ standard with `--std=<id>` (e.g. `c11`, `c++17`).
31
-
-**`cppcheck-lite.arguments`**: (string) Additional [command line arguments](https://cppcheck.sourceforge.io/manual.pdf?#page=5) to pass to `cppcheck`.
32
-
-**`cppcheck-lite.path`**: (string) Path to the `cppcheck` executable. If left empty, `cppcheck` from the system PATH is used.
28
+
-**`cppcheck-official.enable`**: (boolean) Enable or disable the extension.
29
+
-**`cppcheck-official.minSeverity`**: (string) Minimum severity to report (`info`, `warning`, or `error`). `info` shows style, performance, portability and information messages.
30
+
-**`cppcheck-official.standard`**: (string) Sets the C/C++ standard with `--std=<id>` (e.g. `c11`, `c++17`).
31
+
-**`cppcheck-official.arguments`**: (string) Additional [command line arguments](https://cppcheck.sourceforge.io/manual.pdf?#page=5) to pass to `cppcheck`.
32
+
-**`cppcheck-official.path`**: (string) Path to the `cppcheck` executable. If left empty, `cppcheck` from the system PATH is used. Supports paths relative to workspace folder on the formats `./RELATIVE_PATH`, `../RELATIVE_PATH` or `${workspaceFolder}/RELATIVE_PATH`.
33
33
34
34
## Reporting Issues
35
-
Please submit any issues or feature requests via the [GitHub Issues page](https://github.com/JustusRijke/Cppcheck-Lite/issues).
35
+
Please submit any issues or feature requests via the [GitHub Issues page](https://github.com/cppchecksolutions/vscode-cppcheck-official/issues).
36
36
37
-
---
38
-
39
-
**Enjoy using Cppcheck Lite!**
37
+
## Acknowledgements
38
+
This plugin is forked from the plugin cppcheck-lite by Justus Rijke (https://github.com/JustusRijke/Cppcheck-Lite).
0 commit comments