microsoft/onnxruntime-extensions

Public

mirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
da95244190729c3503750d9d66e47f4d7ecb8e10

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.clang-tidy

30lines · modecode

1---
2# turn off readability-braces-around-statements to allow single line statement like 'if (x == y) doSomething();'
3Checks: '-*,cppcoreguidelines-*,google-*,readability-*,modernize-*,-readability-braces-around-statements,-google-runtime-references,-cppcoreguidelines-pro-type-reinterpret-cast'
4WarningsAsErrors: ''
5HeaderFilterRegex: '.*onnxruntime\/core\/.*'
6AnalyzeTemporaryDtors: false
7FormatStyle: none
8CheckOptions:
9 - key: google-readability-braces-around-statements.ShortStatementLines
10 value: '1'
11 - key: google-readability-function-size.StatementThreshold
12 value: '800'
13 - key: google-readability-namespace-comments.ShortNamespaceLines
14 value: '10'
15 - key: google-readability-namespace-comments.SpacesBeforeComments
16 value: '2'
17 - key: modernize-loop-convert.MaxCopySize
18 value: '16'
19 - key: modernize-loop-convert.MinConfidence
20 value: reasonable
21 - key: modernize-loop-convert.NamingStyle
22 value: CamelCase
23 - key: modernize-pass-by-value.IncludeStyle
24 value: google
25 - key: modernize-replace-auto-ptr.IncludeStyle
26 value: google
27 - key: modernize-use-nullptr.NullMacros
28 value: 'NULL'
29...
30
31