Skip to content

Commit

Permalink
Rename "C++ Lint" to Cpplint
Browse files Browse the repository at this point in the history
Switch all instances of "C++ Lint" to CppLint.

In the documentation, the tool is only mentioned by the name cpplint.

Source:
https://github.com/google/styleguide/tree/gh-pages/cpplint
https://pypi.org/project/cpplint
  • Loading branch information
marthinsen committed Nov 14, 2021
1 parent 8690cb8 commit 4909e8c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion SUPPORTED-FORMATS.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ If your tool is supported, but some properties are missing (icon, URL, etc.), pl
-
</td>
<td>
C++ Lint
Cpplint
</td>
<td>
-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import static edu.hm.hafner.util.IntegerParser.*;

/**
* A parser for C++ Lint compiler warnings.
* A parser for Cpplint static code checker warnings.
*
* @author Ullrich Hafner
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
import edu.hm.hafner.analysis.parser.CppLintParser;

/**
* A descriptor for C++ Lint.
* A descriptor for Cpplint.
*
* @author Lorenz Munsch
*/
class CppLintDescriptor extends ParserDescriptor {
private static final String ID = "cpplint";
private static final String NAME = "C++ Lint";
private static final String NAME = "Cpplint";

CppLintDescriptor() {
super(ID, NAME);
Expand Down

0 comments on commit 4909e8c

Please sign in to comment.