Skip to content

Commit a1cf116

Browse files
authored
Remove UseCases dir from scripts (#41)
1 parent 4ce9565 commit a1cf116

File tree

4 files changed

+1
-5
lines changed

4 files changed

+1
-5
lines changed

.dockerignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
.build/
22
.swiftpm/
3-
UseCases/.build/
4-
UseCases/.swiftpm/

.swiftformat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
--swiftversion 5.0
44
--exclude .build
5-
--exclude UseCases/.build
65
--exclude Tests/LinuxMain.swift
76
--exclude **/*Tests+XCTest.swift
87

scripts/validate_format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ printf "=> Checking format\n"
2121
FIRST_OUT="$(git status --porcelain)"
2222
# swiftformat does not scale so we loop ourselves
2323
shopt -u dotglob
24-
find Sources/* Tests/* IntegrationTests/* UseCases/* -type d | while IFS= read -r d; do
24+
find Sources/* Tests/* IntegrationTests/* -type d | while IFS= read -r d; do
2525
printf " * checking $d... "
2626
out=$(swiftformat $d 2>&1)
2727
SECOND_OUT="$(git status --porcelain)"

scripts/validate_license_headers.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ EOF
109109
(
110110
cd "$here/.."
111111
find . \
112-
\( \! -path './UseCases/.build/*' -a \
113112
\( \! -path './.build/*' \) -a \
114113
\( "${matching_files[@]}" \) -a \
115114
\( \! \( "${exceptions[@]}" \) \) \) | while read line; do

0 commit comments

Comments
 (0)