Skip to content

Commit a2aa6a9

Browse files
committed
Cleanup special handling for tilt_modules folder
Signed-off-by: Chirayu Kapoor <[email protected]>
1 parent 79ba44c commit a2aa6a9

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ vendor
6868
tilt.d
6969
tilt-settings.json
7070
tilt-settings.yaml
71-
tilt_modules
7271
.tiltbuild
7372

7473
# User-supplied clusterctl hacks settings

hack/boilerplate/boilerplate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def file_passes(filename, refs, regexs):
150150
def file_extension(filename):
151151
return os.path.splitext(filename)[1].split(".")[-1].lower()
152152

153-
skipped_dirs = ['tilt_modules', '_gopath', '_output', '.git', 'cluster/env.sh',
153+
skipped_dirs = ['_gopath', '_output', '.git', 'cluster/env.sh',
154154
"vendor", "test/e2e/generated/bindata.go", "hack/boilerplate/test",
155155
"staging/src/k8s.io/kubectl/pkg/generated/bindata.go"]
156156

hack/verify-shellcheck.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,7 @@ fi
7373

7474
echo "Running shellcheck..."
7575
cd "${ROOT_PATH}" || exit
76-
IGNORE_FILES=$(find . -name "*.sh" | { grep "tilt_modules" || true; })
77-
echo "Ignoring shellcheck on ${IGNORE_FILES}"
78-
FILES=$(find . -name "*.sh" -not -path "./tilt_modules/*")
76+
FILES=$(find . -name "*.sh")
7977
while read -r file; do
8078
"$SHELLCHECK" -x "$file" >> "${OUT}" 2>&1
8179
done <<< "$FILES"

0 commit comments

Comments
 (0)