-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #220 from LSTS/feature/clang-format
Feature/clang format
- Loading branch information
Showing
4 changed files
with
139 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
Language: Cpp | ||
BasedOnStyle: LLVM | ||
AllowShortFunctionsOnASingleLine: None | ||
AlwaysBreakAfterReturnType: All | ||
BinPackArguments: true | ||
BinPackParameters: true | ||
BreakBeforeBinaryOperators: NonAssignment | ||
BreakBeforeBraces: Custom | ||
BreakConstructorInitializers: AfterColon | ||
ColumnLimit: 100 | ||
PackConstructorInitializers: Never | ||
ConstructorInitializerIndentWidth: 2 | ||
Cpp11BracedListStyle: false | ||
IndentCaseLabels: true | ||
NamespaceIndentation: All | ||
PointerAlignment: Left | ||
SpaceBeforeCtorInitializerColon: false | ||
SpaceBeforeInheritanceColon: false | ||
SpacesBeforeTrailingComments: 2 | ||
SpaceAfterTemplateKeyword: true | ||
AlignEscapedNewlines: Left | ||
FixNamespaceComments: false | ||
ContinuationIndentWidth: 2 | ||
BraceWrapping: | ||
AfterCaseLabel: true | ||
AfterClass: true | ||
AfterControlStatement: Always | ||
AfterEnum: true | ||
AfterFunction: true | ||
AfterNamespace: true | ||
AfterObjCDeclaration: true | ||
AfterStruct: true | ||
AfterUnion: true | ||
AfterExternBlock: true | ||
BeforeCatch: true | ||
BeforeElse: true | ||
BeforeLambdaBody: false | ||
BeforeWhile: false | ||
IndentBraces: false | ||
SplitEmptyFunction: false | ||
SplitEmptyRecord: true | ||
SplitEmptyNamespace: true | ||
SpaceInEmptyBlock: true | ||
UseTab: Never | ||
... |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#!/bin/bash | ||
############################################################################ | ||
# Copyright 2007-2019 Universidade do Porto - Faculdade de Engenharia # | ||
# Laboratório de Sistemas e Tecnologia Subaquática (LSTS) # | ||
############################################################################ | ||
# This file is part of DUNE: Unified Navigation Environment. # | ||
# # | ||
# Commercial Licence Usage # | ||
# Licencees holding valid commercial DUNE licences may use this file in # | ||
# accordance with the commercial licence agreement provided with the # | ||
# Software or, alternatively, in accordance with the terms contained in a # | ||
# written agreement between you and Faculdade de Engenharia da # | ||
# Universidade do Porto. For licensing terms, conditions, and further # | ||
# information contact lsts@fe.up.pt. # | ||
# # | ||
# Modified European Union Public Licence - EUPL v.1.1 Usage # | ||
# Alternatively, this file may be used under the terms of the Modified # | ||
# EUPL, Version 1.1 only (the "Licence"), appearing in the file LICENCE.md # | ||
# included in the packaging of this file. You may not use this work # | ||
# except in compliance with the Licence. Unless required by applicable # | ||
# law or agreed to in writing, software distributed under the Licence is # | ||
# distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF # | ||
# ANY KIND, either express or implied. See the Licence for the specific # | ||
# language governing permissions and limitations at # | ||
# https://github.com/LSTS/dune/blob/master/LICENCE.md and # | ||
# http://ec.europa.eu/idabc/eupl.html. # | ||
############################################################################ | ||
# Author: Jose Pinto # | ||
############################################################################ | ||
|
||
# This script can be used to format all committed source files using | ||
# clang-format. It can also be added used as .git/hooks/pre-commit script | ||
|
||
format_file() { | ||
file="${1}" | ||
if [ -f $file ]; then | ||
clang-format -i ${1} | ||
git add ${1} | ||
fi | ||
} | ||
|
||
case "${1}" in | ||
--help ) | ||
echo "Runs clang-format on locally committed source files" | ||
;; | ||
* ) | ||
for file in `git diff-index --cached --name-only HEAD | grep -iE '\.(c|cpp|h|hpp)$' ` ; do | ||
echo "Applying clang-format to ${file}..." | ||
format_file "${file}" | ||
done | ||
;; | ||
esac |