129 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			129 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
| ---
 | |
| Language:        Cpp
 | |
| # BasedOnStyle:  LLVM
 | |
| AccessModifierOffset: -2
 | |
| AlignAfterOpenBracket: Align
 | |
| AlignConsecutiveAssignments: true
 | |
| AlignConsecutiveDeclarations: true
 | |
| AlignEscapedNewlines: Left
 | |
| AlignOperands:   true
 | |
| AlignTrailingComments: true
 | |
| AllowAllParametersOfDeclarationOnNextLine: false
 | |
| AllowShortBlocksOnASingleLine: false
 | |
| AllowShortCaseLabelsOnASingleLine: false
 | |
| AllowShortFunctionsOnASingleLine: All
 | |
| AllowShortIfStatementsOnASingleLine: false
 | |
| AllowShortLoopsOnASingleLine: false
 | |
| AlwaysBreakAfterDefinitionReturnType: None
 | |
| AlwaysBreakAfterReturnType: None
 | |
| AlwaysBreakBeforeMultilineStrings: false
 | |
| AlwaysBreakTemplateDeclarations: true
 | |
| BinPackArguments: true
 | |
| BinPackParameters: true
 | |
| BraceWrapping:   
 | |
|   AfterClass:      true
 | |
|   AfterControlStatement: false
 | |
|   AfterEnum:       true
 | |
|   AfterFunction:   true
 | |
|   AfterNamespace:  false
 | |
|   AfterObjCDeclaration: false
 | |
|   AfterStruct:     true
 | |
|   AfterUnion:      true
 | |
|   AfterExternBlock: false
 | |
|   BeforeCatch:     false
 | |
|   BeforeElse:      false
 | |
|   IndentBraces:    false
 | |
|   SplitEmptyFunction: false
 | |
|   SplitEmptyRecord: false
 | |
|   SplitEmptyNamespace: false
 | |
| BreakBeforeBinaryOperators: None
 | |
| BreakBeforeBraces: Custom
 | |
| BreakBeforeInheritanceComma: false
 | |
| # BreakInheritanceList: BeforeColon
 | |
| BreakBeforeTernaryOperators: true
 | |
| BreakConstructorInitializersBeforeComma: true
 | |
| BreakConstructorInitializers: BeforeComma
 | |
| BreakAfterJavaFieldAnnotations: false
 | |
| BreakStringLiterals: true
 | |
| ColumnLimit:     120
 | |
| CommentPragmas:  '^ IWYU pragma:'
 | |
| CompactNamespaces: false
 | |
| ConstructorInitializerAllOnOneLineOrOnePerLine: false
 | |
| ConstructorInitializerIndentWidth: 2
 | |
| ContinuationIndentWidth: 2
 | |
| Cpp11BracedListStyle: true
 | |
| DerivePointerAlignment: false
 | |
| DisableFormat:   false
 | |
| ExperimentalAutoDetectBinPacking: false
 | |
| FixNamespaceComments: true
 | |
| ForEachMacros:   
 | |
|   - foreach
 | |
|   - Q_FOREACH
 | |
|   - BOOST_FOREACH
 | |
| IncludeBlocks:   Regroup
 | |
| # To obtain updated lists of system headers used in the below expressions, see:
 | |
| #   https://stackoverflow.com/a/2029106
 | |
| IncludeCategories: 
 | |
|   # ONNC library headers
 | |
|   - Regex:           '^[<|"]onnc/'
 | |
|     Priority:        2
 | |
|   # ONNX library headers
 | |
|   - Regex:           '^[<|"]onnx/'
 | |
|     Priority:        3
 | |
|   # C system headers.
 | |
|   - Regex:           '^[<"](aio|arpa/inet|assert|complex|cpio|ctype|curses|dirent|dlfcn|errno|fcntl|fenv|float|fmtmsg|fnmatch|ftw|glob|grp|iconv|inttypes|iso646|langinfo|libgen|limits|locale|math|monetary|mqueue|ndbm|netdb|net/if|netinet/in|netinet/tcp|nl_types|poll|pthread|pwd|regex|sched|search|semaphore|setjmp|signal|spawn|stdalign|stdarg|stdatomic|stdbool|stddef|stdint|stdio|stdlib|stdnoreturn|string|strings|stropts|sys/ipc|syslog|sys/mman|sys/msg|sys/resource|sys/select|sys/sem|sys/shm|sys/socket|sys/stat|sys/statvfs|sys/time|sys/times|sys/types|sys/uio|sys/un|sys/utsname|sys/wait|tar|term|termios|tgmath|threads|time|trace|uchar|ulimit|uncntrl|unistd|utime|utmpx|wchar|wctype|wordexp)\.h[">]$'
 | |
|     Priority:        4
 | |
|   # C++ system headers (as of C++14).
 | |
|   - Regex:           '^[<"](algorithm|array|atomic|bitset|cassert|ccomplex|cctype|cerrno|cfenv|cfloat|chrono|cinttypes|ciso646|climits|clocale|cmath|codecvt|complex|condition_variable|csetjmp|csignal|cstdalign|cstdarg|cstdbool|cstddef|cstdint|cstdio|cstdlib|cstring|ctgmath|ctime|cuchar|cwchar|cwctype|deque|exception|forward_list|fstream|functional|future|initializer_list|iomanip|ios|iosfwd|iostream|istream|iterator|limits|list|locale|map|memory|mutex|new|numeric|ostream|queue|random|ratio|regex|scoped_allocator|set|shared_mutex|sstream|stack|stdexcept|streambuf|string|strstream|system_error|thread|tuple|type_traits|typeindex|typeinfo|unordered_map|unordered_set|utility|valarray|vector)[">]$'
 | |
|     Priority:        5
 | |
|   - Regex:           '.*'
 | |
|     Priority:        1
 | |
| IncludeIsMainRegex: '(Test)?$'
 | |
| IndentCaseLabels: false
 | |
| IndentPPDirectives: AfterHash
 | |
| IndentWidth:     2
 | |
| IndentWrappedFunctionNames: false
 | |
| JavaScriptQuotes: Leave
 | |
| JavaScriptWrapImports: true
 | |
| KeepEmptyLinesAtTheStartOfBlocks: false
 | |
| MacroBlockBegin: ''
 | |
| MacroBlockEnd:   ''
 | |
| MaxEmptyLinesToKeep: 1
 | |
| NamespaceIndentation: None
 | |
| # ObjCBinPackProtocolList: Auto
 | |
| # ObjCBlockIndentWidth: 2
 | |
| # ObjCSpaceAfterProperty: false
 | |
| # ObjCSpaceBeforeProtocolList: true
 | |
| PenaltyBreakAssignment: 2
 | |
| PenaltyBreakBeforeFirstCallParameter: 19
 | |
| PenaltyBreakComment: 300
 | |
| PenaltyBreakFirstLessLess: 120
 | |
| PenaltyBreakString: 1000
 | |
| # PenaltyBreakTemplateDeclaration: 10
 | |
| PenaltyExcessCharacter: 1000000
 | |
| PenaltyReturnTypeOnItsOwnLine: 60
 | |
| PointerAlignment: Left
 | |
| ReflowComments:  true
 | |
| SortIncludes:    true
 | |
| SortUsingDeclarations: true
 | |
| SpaceAfterCStyleCast: false
 | |
| SpaceAfterTemplateKeyword: true
 | |
| SpaceBeforeAssignmentOperators: true
 | |
| # SpaceBeforeCpp11BracedList: false
 | |
| # SpaceBeforeCtorInitializerColon: true
 | |
| # SpaceBeforeInheritanceColon: true
 | |
| SpaceBeforeParens: ControlStatements
 | |
| # SpaceBeforeRangeBasedForLoopColon: true
 | |
| SpaceInEmptyParentheses: false
 | |
| SpacesBeforeTrailingComments: 1
 | |
| SpacesInAngles:  false
 | |
| SpacesInContainerLiterals: false
 | |
| SpacesInCStyleCastParentheses: false
 | |
| SpacesInParentheses: false
 | |
| SpacesInSquareBrackets: false
 | |
| Standard:        Cpp11
 | |
| TabWidth:        2
 | |
| UseTab:          Never
 | |
| ...
 | |
| 
 |