Google Code Exporter
Google Code Exporter
``` Currently cpplint messages can be suppressed in the source code with NOLINT() definition. The definition affects only to the single line. In some cases it would be useful to...
``` Source code: class X : public QObject { ... public slots: ... } causes incorrectly message "Weird number of spaces at line-start. Are you using a 2-space indent? [whitespace/indent]...
``` Currently cpplint doesn't recognize .hpp as a header file extension and do not perform all tests to the file. Proposal is to add "--headers=extension, extension,..." option that defines the...
``` The cpplint returns non-zero when there is at least one message. If the cpplint is started from a make file, the non-zero return value will stop. Proposal is to...
``` Enable the on/off tags (@formatter:off, @formatter:on) so that comments can be formatted manually in exceptional cases, such as to provide an ASCII table in a comment to describe a...
``` According to http://google-styleguide.googlecode.com/svn/trunk/javaguide.html#s3.3.3-import-o rdering-and-spacing "Import statements are divided into the following groups, in this order, with each group separated by a single blank line: 1. All static imports in...
``` removed extra comma in one of the array initializer examples ``` Original issue reported on code.google.com by `[email protected]` on 16 May 2014 at 6:01 Attachments: - [javaguide.html.patch](https://storage.googleapis.com/google-code-attachments/google-styleguide/issue-25/comment-0/javaguide.html.patch)
``` The C++ style guide gives two contradicting guidelines about using scoped_ptr. The Ownership and Smart Pointers section explicitly says not to use scoped_ptr except for backward compatibility, while the...
``` var prot = document.location.protocol; document.write(''); document.write(''); ``` Original issue reported on code.google.com by `[email protected]` on 17 Apr 2014 at 5:35 Attachments: - [javascriptguide.xml.patch](https://storage.googleapis.com/google-code-attachments/google-styleguide/issue-23/comment-0/javascriptguide.xml.patch)
``` What steps will reproduce the problem? 1. Run `cpplint --root=include file.h`. The file.h is inside the directory `include\project`. What is the expected output? What do you see instead? Expected:...