forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clang-tidy
More file actions
16 lines (13 loc) · 751 Bytes
/
Copy path.clang-tidy
File metadata and controls
16 lines (13 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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'