mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
53d922bde6
Which was moved in 9b3bfb63d
("cppcheck: Move config files to build_tools")
Also get rid of the nonstandard cppcheck output format.
7 lines
226 B
Bash
Executable file
7 lines
226 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cppcheck --std=posix --quiet \
|
|
--suppressions-list=build_tools/cppcheck.suppressions --inline-suppr \
|
|
--rule-file=build_tools/cppcheck.rules \
|
|
--force \
|
|
${@:---enable=all ./src/}
|