Skip to content

Commit

Permalink
update clang-tidy config
Browse files Browse the repository at this point in the history
  • Loading branch information
BigPeet committed Feb 20, 2021
1 parent 0ddfdaf commit d961e7d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# enable all checks except the named ones (they are subtracted):
Checks: '*,-android-*,-fuchsia-*,-google-*,-zircon-*,-abseil-*,-llvm-*,-objc-*,-modernize-use-trailing-return-type'
Checks: '*,-android-*,-fuchsia-*,-google-*,-zircon-*,-abseil-*,-llvm-*,-llvmlibc-*,-objc-*,-modernize-use-trailing-return-type'

# no warning as errors
WarningsAsErrors: ''
Expand Down
4 changes: 4 additions & 0 deletions clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ if [[ -d ./install ]]; then
rm -rf ./install
fi

if [[ -d ./.clangd ]]; then
rm -rf ./.clangd
fi

if [[ -L compile_commands.json ]]; then
rm compile_commands.json
fi

0 comments on commit d961e7d

Please sign in to comment.