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
hi, i used nvim-lint on windows and install cpplint via mason. but lint not working.
.\hello.cc:0: No copyright message found. You should have a line: "Copyright [year] <Copyright Owner>" [legal/copyright] [5]
.\hello.cc:4: Do not use namespace using-directives. Use using-declarations instead. [build/namespaces] [5]
.\hello.cc:7: Lines should be <= 80 characters long [whitespace/line_length] [2]
.\hello.cc:9: { should almost always be at the end of the previous line [whitespace/braces] [4]
.\hello.cc:8: Add #include <string> for string [build/include_what_you_use] [4]
.\hello.cc:1: D:/projects/hello-gcc/hello.cc should include its header file D:/projects/hello-gcc/hello.h [build/include] [5]
Done processing .\hello.cc
Total errors found: 6
the output above on can't be parsed because the line sep is \r\n on windows. and pattern = '([^:]+):(%d+): (.+) (.+)' not match too
The text was updated successfully, but these errors were encountered:
hi, i used nvim-lint on windows and install cpplint via mason. but lint not working.
the output above on can't be parsed because the line sep is \r\n on windows. and pattern = '([^:]+):(%d+): (.+) (.+)' not match too
The text was updated successfully, but these errors were encountered: