summaryrefslogtreecommitdiff
path: root/lldb/.clang-format
Commit message (Collapse)AuthorAgeFilesLines
* Updated .clang-format rules so bring LLDB in line with LLVM standards.Kate Stone2016-09-061-8/+0
| | | | llvm-svn: 280721
* Reverted premature changes to .clang-formatKate Stone2016-08-191-0/+8
| | | | llvm-svn: 279316
* Moved #include for lldb-python.h to a distinct group with a reminder commentKate Stone2016-08-191-8/+0
| | | | | | | declaring that it must be first. Failure to do so results in build failures on macOS due to subtle header conflicts. llvm-svn: 279315
* Update .clang-format file to support break after return type.Zachary Turner2015-12-281-1/+1
| | | | | | | | This depends on having a recently built version of clang-format installed, as the patch to support this behavior was only just recently added to clang-format. llvm-svn: 256526
* Add AccessModifierOffset to clang-format stylePavel Labath2015-12-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | Summary: As we override the indent option of the LLVM style, we need to override the access modifier offset as well. Otherwise, classes will be formatted like such class A { public: int foo; }; which is not used anywhere in LLDB. This option makes clang-format style more similar to LLDB and brings it closer to the original intention of LLVM style, which was to not indent access modifiers. Reviewers: zturner, tfiala Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D15562 llvm-svn: 255882
* Create an expression parser for Go.Ryan Brown2015-11-021-1/+1
| | | | | | | | | | | The Go interpreter doesn't JIT or use LLVM, so this also moves all the JIT related code from UserExpression to a new class LLVMUserExpression. Differential Revision: http://reviews.llvm.org/D13073 Fix merge llvm-svn: 251820
* Update build instructions / coding conventions.Zachary Turner2015-03-101-1/+1
| | | | | | | | | | | | | | This improves the instructions for checking out LLDB, adds more links to LLVM instructions, and more explicitly calls out when we differ from the style guide. Also updates the clang-format configuration file to correctly reflect a 120 column limit. Reviewed by: Jim Ingham Differential Revision: http://reviews.llvm.org/D8222 llvm-svn: 231884
* Fix .clang-format file to adhere to LLDB 140 column limit.Zachary Turner2014-08-191-1/+1
| | | | llvm-svn: 215993
* Modification to clang-format style.Zachary Turner2014-08-141-1/+2
| | | | | | Fixes constructor initializer list and function return type style. llvm-svn: 215654
* Update clang-format file.Zachary Turner2014-08-131-0/+3
| | | | llvm-svn: 215572
* Add a .clang-format file to enhance formatting experience with clang-formatDavid Majnemer2014-07-241-0/+4
clang-format is a handy tool that formats code very intelligently. I'd like to use it with LLDB but it requires a .clang-format file to inform it about LLDB-specific formatting rules. More information on these rules are here: http://clang.llvm.org/docs/ClangFormatStyleOptions.html Differential Revision: http://reviews.llvm.org/D4630 llvm-svn: 213823