Add a clang-tidy configuration file for MLIR, it is using camelBack for naming at the moment

This commit is contained in:
Mehdi Amini 2019-12-26 21:41:25 +00:00
parent 90ff34e6ab
commit b52cb5688b

4
mlir/.clang-tidy Normal file
View File

@ -0,0 +1,4 @@
Checks: '-*,readability-identifier-naming'
CheckOptions:
- { key: readability-identifier-naming.VariableCase, value: camelBack }
- { key: readability-identifier-naming.ParameterCase, value: camelBack }