Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Commit

Permalink
Make clang-tidy warnings errors
Browse files Browse the repository at this point in the history
  • Loading branch information
agutenkunst committed Sep 5, 2019
1 parent a44b3df commit cb1ad7e
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ Checks: '-*,
readability-container-size-empty,
readability-identifier-naming,
'
# WarningsAsErrors: '
# performance-*,
# llvm-namespace-comment,
# modernize-redundant-void-arg,
# modernize-use-nullptr,
# modernize-use-default,
# modernize-use-override,
# modernize-loop-convert,
# readability-named-parameter,
# readability-redundant-smartptr-get,
# readability-redundant-string-cstr,
# readability-simplify-boolean-expr,
# readability-container-size-empty,
# readability-identifier-naming,
# '
WarningsAsErrors: '
performance-*,
llvm-namespace-comment,
modernize-redundant-void-arg,
modernize-use-nullptr,
modernize-use-default,
modernize-use-override,
modernize-loop-convert,
readability-named-parameter,
readability-redundant-smartptr-get,
readability-redundant-string-cstr,
readability-simplify-boolean-expr,
readability-container-size-empty,
readability-identifier-naming,
'

HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
Expand Down

0 comments on commit cb1ad7e

Please sign in to comment.