mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
1696d5e884
MozReview-Commit-ID: 5WV2SgDuDC --HG-- extra : rebase_source : 1bcf3416ae02b9f7882aa90835e79b89208b2280
17 lines
751 B
YAML
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'
|
|
|