mirror of
https://github.com/fish-shell/fish-shell
synced 2025-02-13 12:43:43 +00:00
7 lines
226 B
Bash
Executable file
7 lines
226 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cppcheck --std=c++11 --quiet \
|
|
--suppressions-list=build_tools/cppcheck.suppressions --inline-suppr \
|
|
--rule-file=build_tools/cppcheck.rules \
|
|
--force \
|
|
${@:---enable=all ./src/}
|