webdriver: Implement Fullscreen command support (#100)
[gecko.git] / .clang-tidy
blobf28de0d5f3682074f173826f98db66fe17a2a04c
1 # Checks run by clang-tidy over Mozilla code.
3 # The following checks are currently enabled:
4 # * modernize-raw-string-literal -
5 #     Replace string literals containing escaped characters with raw string literals
6 # * modernize-use-bool-literals
7 #     Replace integer literals which are cast to bool
8 # * modernize-loop-convert
9 #     Converts for(...; ...; ...) loops to use the new range-based loops in C++11
10 # * modernize-use-default
11 #     Replace default bodies of special member functions with = default;
12 # * modernize-use-override
13 #     Use C++11's override and remove virtual where applicable
15 Checks:          '-*, modernize-raw-string-literal, modernize-use-bool-literals, modernize-loop-convert, modernize-use-default, modernize-use-override'