gecko-dev/.clang-tidy
Sylvestre Ledru 1696d5e884 Bug 1319396 - Update the list of checkers in the .clang-tidy file r=Ehsan
MozReview-Commit-ID: 5WV2SgDuDC

--HG--
extra : rebase_source : 1bcf3416ae02b9f7882aa90835e79b89208b2280
2016-11-22 12:30:19 +01:00

17 lines
751 B
YAML

# Checks run by clang-tidy over Mozilla code.
# The following checks are currently enabled:
# * modernize-raw-string-literal -
# Replace string literals containing escaped characters with raw string literals
# * modernize-use-bool-literals
# Replace integer literals which are cast to bool
# * modernize-loop-convert
# Converts for(...; ...; ...) loops to use the new range-based loops in C++11
# * modernize-use-default
# Replace default bodies of special member functions with = default;
# * modernize-use-override
# Use C++11's override and remove virtual where applicable
Checks: '-*, modernize-raw-string-literal, modernize-use-bool-literals, modernize-loop-convert, modernize-use-default, modernize-use-override'