aboutsummaryrefslogtreecommitdiff
path: root/lint
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-23 20:21:48 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-23 20:21:48 +1200
commite45c370e98540756cb617f639cbd4dd17bacdb35 (patch)
treef810c6ca168ec390311915dbd8a7c59ae0d7e6bd /lint
parentRemove stray Bashism from pwgen() wrapper (diff)
downloaddotfiles-e45c370e98540756cb617f639cbd4dd17bacdb35.tar.gz
dotfiles-e45c370e98540756cb617f639cbd4dd17bacdb35.zip
Ignore SC1090 (allow unfollowable dotting)
Diffstat (limited to 'lint')
-rwxr-xr-xlint/bash2
-rwxr-xr-xlint/sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/lint/bash b/lint/bash
index 0fd11df1..9a9ad758 100755
--- a/lint/bash
+++ b/lint/bash
@@ -1,2 +1,2 @@
#!/bin/sh
-find bash -type f -print -exec shellcheck -s bash -- {} \;
+find bash -type f -print -exec shellcheck -e SC1090 -s bash -- {} \;
diff --git a/lint/sh b/lint/sh
index 11511ebf..7168a5bc 100755
--- a/lint/sh
+++ b/lint/sh
@@ -1,2 +1,2 @@
#!/bin/sh
-find sh -type f -print -exec shellcheck -s sh -- {} \;
+find sh -type f -print -exec shellcheck -e SC1090 -s sh -- {} \;