summary refs log tree commit diff
path: root/scripts-dev
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2022-04-08 14:36:09 +0100
committerGitHub <noreply@github.com>2022-04-08 14:36:09 +0100
commitdd5cc37aa465df8e33fd872de2528dc53740b2a6 (patch)
tree62ef2be984ed6f74eca9662ae39f07546dca6dd7 /scripts-dev
parentUnify HTTP query parameter type hints (#12415) (diff)
downloadsynapse-dd5cc37aa465df8e33fd872de2528dc53740b2a6.tar.xz
Stop maintaining a list of lint targets in `lint.sh` (#12420)
Diffstat (limited to 'scripts-dev')
-rwxr-xr-xscripts-dev/lint.sh8
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