Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 9922ac1232aa11f5b74b2071fe302ff1eb5a1f51
  • master par défaut protégée
  • rust-playlist-sync
  • rust
  • fix-qt-deprecated-qvariant-type
  • fix-mpris-qtwindow-race-condition
  • rust-appimage-wayland
  • windows-build-rebased
  • v2.5 protégée
  • v2.4 protégée
  • v2.3-1 protégée
  • v2.3 protégée
  • v2.2 protégée
  • v2.1 protégée
  • v2.0 protégée
  • v1.8-3 protégée
  • v1.8-2 protégée
  • v1.8-1 protégée
  • v1.8 protégée
  • v1.7 protégée
  • v1.6 protégée
  • v1.5 protégée
  • v1.4 protégée
  • v1.3 protégée
  • v1.2 protégée
  • v1.1 protégée
  • v1.0 protégée
27 résultats

.clang-format

Blame
  • .clang-format 2,96 Kio
    ---
    AccessModifierOffset: -4
    AlignAfterOpenBracket: Align
    AlignConsecutiveAssignments: true
    AlignConsecutiveBitFields: true
    AlignConsecutiveDeclarations: false
    AlignConsecutiveMacros: true
    AlignEscapedNewlines: Right
    AlignOperands: true
    AlignTrailingComments: true
    AllowAllParametersOfDeclarationOnNextLine: false
    AllowShortBlocksOnASingleLine: false
    AllowShortCaseLabelsOnASingleLine: false
    AllowShortFunctionsOnASingleLine: None
    AllowShortIfStatementsOnASingleLine: false
    AllowShortLoopsOnASingleLine: false
    AlwaysBreakAfterDefinitionReturnType: TopLevel
    AlwaysBreakAfterReturnType: None
    AlwaysBreakBeforeMultilineStrings: false
    AlwaysBreakTemplateDeclarations: false
    BinPackArguments: true
    BinPackParameters: true
    BraceWrapping:
      AfterClass: false
      AfterControlStatement: false
      AfterEnum: false
      AfterFunction: true
      AfterNamespace: true
      AfterObjCDeclaration: false
      AfterStruct: false
      AfterUnion: false
      AfterExternBlock: false
      BeforeCatch: false
      BeforeElse: false
      IndentBraces: false
      SplitEmptyFunction: true
      SplitEmptyRecord: true
      SplitEmptyNamespace: true
    BreakBeforeBinaryOperators: None
    BreakBeforeBraces: Custom
    BreakBeforeInheritanceComma: false
    BreakBeforeTernaryOperators: true
    BreakConstructorInitializersBeforeComma: false
    BreakConstructorInitializers: BeforeComma
    BreakAfterJavaFieldAnnotations: false
    BreakStringLiterals: false
    ColumnLimit: 120
    CompactNamespaces: true
    ConstructorInitializerAllOnOneLineOrOnePerLine: false
    ConstructorInitializerIndentWidth: 4
    ContinuationIndentWidth: 4
    Cpp11BracedListStyle: false
    DerivePointerAlignment: false
    DisableFormat: false
    ExperimentalAutoDetectBinPacking: false
    FixNamespaceComments: false
    CommentPragmas: '^ KEEP pragma:'
    
    ForEachMacros:
      - 'for_each'
      - 'FOR_EACH'
      - 'FOR_EVER'
      - 'FOR_EVER_IF'
      - 'FOR_EVER_UNTIL'
      - 'FOR_EACH_FLAT_LIST_ITEM'
      - 'FOR_EACH_ARGUMENT'
    
    IncludeCategories:
      - Regex: '.*'
        Priority: 1
    
    IncludeIsMainRegex: '(Test)?$'
    IndentCaseLabels: false
    IndentPPDirectives: None
    IndentWidth: 4
    IndentWrappedFunctionNames: false
    KeepEmptyLinesAtTheStartOfBlocks: false
    MacroBlockBegin: ''
    MacroBlockEnd: ''
    MaxEmptyLinesToKeep: 1
    NamespaceIndentation: None
    
    PenaltyBreakBeforeFirstCallParameter: 30
    PenaltyBreakComment: 10
    PenaltyBreakFirstLessLess: 0
    PenaltyBreakString: 10
    PenaltyExcessCharacter: 100
    PenaltyReturnTypeOnItsOwnLine: 60
    
    PointerAlignment: Right
    ReflowComments: false
    SortIncludes: false
    SortUsingDeclarations: false
    SpaceAfterCStyleCast: false
    SpaceAfterTemplateKeyword: true
    SpaceBeforeAssignmentOperators: true
    SpaceBeforeCtorInitializerColon: true
    SpaceBeforeInheritanceColon: true
    SpaceBeforeParens: ControlStatements
    SpaceBeforeRangeBasedForLoopColon: true
    SpaceInEmptyParentheses: false
    SpacesBeforeTrailingComments: 1
    SpacesInAngles: false
    SpacesInContainerLiterals: false
    SpacesInCStyleCastParentheses: false
    SpacesInParentheses: false
    SpacesInSquareBrackets: false
    TabWidth: 4
    UseTab: Never
    UseCRLF: false
    
    WhitespaceSensitiveMacros:
      - STRINGIZE
      - PP_STRINGIZE
      - BOOST_PP_STRINGIZE
    ...