Skip to content

Commit dc0cba1

Browse files
committed
style: add missing newlines at end of files
Several project files were missing a final newline character, which can cause issues with some tools and git diffs. This commit adds a newline to the end of the following files to ensure they are POSIX-compliant: - .gitignore - go.mod - Makefile - .github/workflows/ci.yaml
1 parent 0c69cbf commit dc0cba1

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- run: make install-kiwi
2424
- run: make test
25+

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ base/
2121
.idea/
2222
models/
2323
include/
24-
ModelGenerator/
24+
ModelGenerator/
25+

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ clean:
2323
format:
2424
# go install mvdan.cc/gofumpt@latest
2525
gofumpt -l -w .
26+

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ require (
1212
github.com/pmezard/go-difflib v1.0.0 // indirect
1313
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
1414
)
15+

0 commit comments

Comments
 (0)