Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding clang format. #436

Open
wants to merge 34 commits into
base: main
Choose a base branch
from
Open
Changes from 2 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
84a248c
Adding clang format.
DanielWielanek Nov 10, 2022
0e05fca
Update .clang-format
DanielWielanek Nov 11, 2022
a5c9a67
Update .clang-format
DanielWielanek Nov 11, 2022
2e4f2aa
Merge remote-tracking branch 'star-bnl/main' into DanielWielanek/main
plexoos Nov 11, 2022
baab1a2
Don't trigger CI for changes in .clang-format
plexoos Nov 11, 2022
4be9085
Test of workflow added.
DanielWielanek Nov 17, 2022
b6c965f
Experimental change of formatter.
DanielWielanek Nov 17, 2022
54d1f82
Removed old commment.
DanielWielanek Nov 17, 2022
d69697a
rm .github/workflows/build-pull-request.yml
plexoos Nov 17, 2022
741c1cb
Update StHbtMaker.h
DanielWielanek Nov 17, 2022
2126d58
Update check-format.yml
DanielWielanek Nov 17, 2022
a84eec5
Update check-format.yml
DanielWielanek Nov 22, 2022
eee5b1a
Update check-format.yml
DanielWielanek Nov 24, 2022
a9f966b
Update check-format.yml
DanielWielanek Nov 24, 2022
9ab8f0e
Update check-format.yml
DanielWielanek Nov 24, 2022
85ebfbe
Update check-format.yml
DanielWielanek Nov 24, 2022
111fdad
Update check-format.yml
DanielWielanek Nov 24, 2022
580992e
Update check-format.yml
DanielWielanek Nov 24, 2022
5be6f4c
Update check-format.yml
DanielWielanek Nov 24, 2022
c14645d
Update check-format.yml
DanielWielanek Nov 24, 2022
cbdd239
Update check-format.yml
DanielWielanek Nov 24, 2022
66e0987
Update check-format.yml
DanielWielanek Nov 24, 2022
9bcbfa9
Update check-format.yml
DanielWielanek Nov 24, 2022
ff87fa1
Update check-format.yml
DanielWielanek Nov 24, 2022
ac70c1c
Update check-format.yml
DanielWielanek Nov 30, 2022
27f7e6a
Clang format test.
DanielWielanek Nov 30, 2022
9f555f9
Removed some test.
DanielWielanek Nov 30, 2022
649cf02
Update check-format.yml
DanielWielanek Nov 30, 2022
f46bb3d
Update check-format.yml
DanielWielanek Nov 30, 2022
b863d09
Update check-format.yml
DanielWielanek Nov 30, 2022
08276b6
Restore pull request file
DanielWielanek Dec 1, 2022
5b3dc17
Merge branch 'star-bnl:main' into main
DanielWielanek Dec 14, 2022
6f6e4d2
Merge branch 'star-bnl:main' into main
DanielWielanek Apr 29, 2023
b663d44
Merge branch 'star-bnl:main' into main
DanielWielanek May 8, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
BasedOnStyle: Google
ColumnLimit: '100'
DanielWielanek marked this conversation as resolved.
Show resolved Hide resolved
IndentPPDirectives: None
IndentWidth: '3'
MaxEmptyLinesToKeep: '1'
SpacesInParentheses: 'false'
TabWidth: '3'
UseTab: Never

...