Skip to content
Snippets Groups Projects
Select Git revision
  • c524e9c9b729f61adef01fdd8ed5ed34fab0dfb0
  • master default protected
  • release/202005
  • release/202001
  • release/201912
  • release/201911
  • release/releaseWindowsTestOne
  • release/windowsReleaseTest
  • release/releaseTest
  • release/releaseWindowsTest
  • release/201910
  • release/qt/201910
  • release/windows-test/201910
  • release/201908
  • release/201906
  • release/201905
  • release/201904
  • release/201903
  • release/201902
  • release/201901
  • release/201812
  • 4.0.0
  • 2.2.0
  • 2.1.0
  • 2.0.1
  • 2.0.0
  • 1.4.1
  • 1.4.0
  • 1.3.0
  • 1.2.0
  • 1.1.0
31 results

astylerc

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    astylerc 1.09 KiB
    # Filename: sflphone-common/astylerc
    # Purpose:  config file for astyle
    #            http://astyle.sourceforge.net/astyle.html
    # Author:  Emmanuel Milou <emmanuel.milou@savoirfairelinux.com>
    #           Savoir-faire Linux Inc
    #          http://www.sflphone.org
    
    style=stroustrup    # stroustrup style http://astyle.sourceforge.net/astyle.html#_style=stroustrup
    indent=spaces=4     # Use spaces instead of tabs for indentation
    indent-classes      # Indent 'class' and 'struct' blocks so that the blocks 'public:', 'protected:' and 'private:' are indented
    indent-switches     # Indent 'switch' blocks so that the 'case X:' statements are indented in the switch block
    break-blocks        # Pad empty lines around header blocks (e.g. 'if', 'while'...).
    brackets=linux
    unpad-paren         # Remove unwanted space around parentheses
    pad-header          # Insert space padding after paren headers only (e.g. 'if', 'for', 'while'...)
    formatted           # only display files that have changed
    recursive           # recursively enter subdirs
    suffix=none         # don't create backup files (that's what version control is for)