Last active
May 31, 2024 01:37
-
-
Save lixingcong/f4520aae7b1f2c693433036b4676ca48 to your computer and use it in GitHub Desktop.
Artistic Style config files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Usage: | |
| # AStyle.exe --options=style.conf demo.cpp | |
| # Language: C/C++ | |
| # base style | |
| --style=k&r | |
| #--style=allman | |
| # max length of a line | |
| --max-code-length=120 | |
| # indent with tabs instead of 4 spaces | |
| --indent=tab=4 | |
| # indentation | |
| --indent-switches | |
| --indent-labels | |
| --indent-col1-comments | |
| --max-continuation-indent=40 | |
| # Indent preprocessor blocks at brace level | |
| --indent-preproc-block | |
| --indent-preproc-define | |
| # operator spaces | |
| --pad-oper | |
| # C/C++ pointer type | |
| --align-pointer=name | |
| --align-reference=name | |
| # misc. options | |
| # --delete-empty-lines |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment