Standardise lint/type scripts between modules/packages

This commit is contained in:
Michael Telatynski
2025-05-08 12:23:13 +01:00
parent 995bc51e93
commit 9b57f46ccc
2 changed files with 5 additions and 4 deletions
@@ -11,9 +11,9 @@
"build": "echo \"Nothing to build\"",
"docker:build": "docker build -t element-hq/synapse-guest-module -f Dockerfile .",
"tsc": "echo \"Nothing to tsc\"",
"lint": "yarn types:py && yarn lint:py",
"types:py": "./scripts/run_in_venv.sh tox -e check_types",
"lint:py": "./scripts/run_in_venv.sh tox -e check_codestyle",
"lint": "yarn lint:types && yarn lint:codestyle",
"lint:types": "./scripts/run_in_venv.sh tox -e check_types",
"lint:codestyle": "./scripts/run_in_venv.sh tox -e check_codestyle",
"lint:fix": "./scripts/run_in_venv.sh tox -e fix_codestyle",
"test": "./scripts/run_in_venv.sh tox -e py",
"depcheck": "echo \"Nothing to check\"",