We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc23300 commit a97c9edCopy full SHA for a97c9ed
README.md
@@ -32,14 +32,14 @@ In your `init.el`:
32
;; Add Google C++ Style checker.
33
;; In default, syntax checked by Clang and Cppcheck.
34
(flycheck-add-next-checker 'c/c++-cppcheck
35
- '(warnings-only . c/c++-googlelint))))
+ '(warning . c/c++-googlelint))))
36
```
37
38
If you not use `cppcheck`. You have need to change `flycheck-add-next-checker`.
39
40
41
(flycheck-add-next-checker 'c/c++-clang
42
- '(warnings-only . c/c++-googlelint))
+ '(warning . c/c++-googlelint))
43
44
45
## Usage
0 commit comments