1 files changed, 1 insertions, 7 deletions
diff --git a/scripts-dev/lint.sh b/scripts-dev/lint.sh
index c063fafa97..4698d2d5be 100755
--- a/scripts-dev/lint.sh
+++ b/scripts-dev/lint.sh
@@ -80,13 +80,7 @@ else
# then lint everything!
if [[ -z ${files+x} ]]; then
# Lint all source code files and directories
- # Note: this list aims to mirror the one in tox.ini
- files=(
- "synapse" "docker" "tests"
- # annoyingly, black doesn't find these so we have to list them
- "scripts-dev"
- "contrib" "setup.py" "synmark" "stubs" ".ci"
- )
+ files=( "." )
fi
fi
|