added clang-tidy config file

This commit is contained in:
Krishna Vedala 2020-07-10 17:09:19 -04:00
parent 9a9781064f
commit caf5e9190a
No known key found for this signature in database
GPG Key ID: BA19ACF8FC8792F7

6
.clang-tidy Normal file
View File

@ -0,0 +1,6 @@
---
Checks: '-*,google-*,clang-analyzer-*,openmp-*,performance-*,portability-*,modernize-*
WarningsAsErrors: ''
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
FormatStyle: '{ BasedOnStyle: Google, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 80, AccessModifierOffset: -4 }'