Skip to content

Commit 125272a

Browse files
Add automatic formatter plugin (#11)
* Add formatter plugin with styling options in style.xml * Re-format src files according to formatter plugin rules * Add git hooks directory with pre commit hooks * Fix typo in hook comment * Refactor githook to run from any directory * Update array formatting to place contents on new lines * Add section on formatting and hooks
1 parent 2ea88f2 commit 125272a

34 files changed

+2046
-1544
lines changed

.hooks/pre-commit

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/bin/bash
2+
#
3+
# A hook script to verify what is about to be committed.
4+
# Called by "git commit" with no arguments. The hook should
5+
# exit with non-zero status after issuing an appropriate message if
6+
# it wants to stop the commit.
7+
#
8+
# To enable this hook, add this file to .git/hooks
9+
10+
set -e
11+
12+
# Get the root of the project
13+
BASE_DIR="$(git rev-parse --show-toplevel)"
14+
15+
# Run formatter to format files before commit
16+
mvn -f "$BASE_DIR/pom.xml" formatter:format &>/dev/null
17+
18+
# Find all files staged for commit
19+
filesStagedForCommit="$(git diff --name-only --cached)"
20+
21+
# Add all files back in case any were changed by formatter
22+
for file in $filesStagedForCommit
23+
do
24+
git add $file
25+
done
26+
27+
exit 0

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,14 @@ Password:
8383

8484
For more information about H2 databases see the [H2 Database Engine](https://www.h2database.com/html/main.html).
8585

86+
### Formatting
87+
88+
The codebase is auto-formatted with the [formatter-maven-plugin](https://code.revelc.net/formatter-maven-plugin/) that will format all source code files in the `src/` and `test/` directories according to the settings in the `style.xml` file, which are based on eclipse profile settings.
89+
90+
Run the `formatter:format` command to run the formatter. It is also bound to the `format` goal that will run as part of the `compile` phase.
91+
92+
You can also add the git hook in `.hooks` to your local `.git/hooks` folder to run the formatter on pre-commit.
93+
8694
## Contributors
8795
The _Puff_ project is looking for contributors to join the initiative!
8896
For information about progress, features under construction and opportunities to contribute see [our project board](https://github.com/benjaminkostiuk/unity-test/projects/1).

pom.xml

+16
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,22 @@
161161
<trimStackTrace>false</trimStackTrace>
162162
</configuration>
163163
</plugin>
164+
<plugin>
165+
<groupId>net.revelc.code.formatter</groupId>
166+
<artifactId>formatter-maven-plugin</artifactId>
167+
<version>2.15.0</version>
168+
<configuration>
169+
<configFile>${project.basedir}/style.xml</configFile>
170+
<encoding>UTF-8</encoding>
171+
</configuration>
172+
<executions>
173+
<execution>
174+
<goals>
175+
<goal>format</goal>
176+
</goals>
177+
</execution>
178+
</executions>
179+
</plugin>
164180
</plugins>
165181
<resources>
166182
<resource>

0 commit comments

Comments
 (0)