diff --git a/modules/opendesk/element-web/package.json b/modules/opendesk/element-web/package.json index ca9e7b3f2d..298d4de5c2 100644 --- a/modules/opendesk/element-web/package.json +++ b/modules/opendesk/element-web/package.json @@ -8,7 +8,7 @@ ], "scripts": { "prepare": "vite build", - "lint:ts": "tsc --noEmit", + "lint": "tsc --noEmit", "test": "echo no tests yet" }, "devDependencies": { diff --git a/modules/restricted-guests/synapse/package.json b/modules/restricted-guests/synapse/package.json index 868aadef5b..3968ba3a87 100644 --- a/modules/restricted-guests/synapse/package.json +++ b/modules/restricted-guests/synapse/package.json @@ -11,8 +11,7 @@ "build": "echo \"Nothing to build\"", "docker:build": "docker build -t element-hq/synapse-guest-module -f Dockerfile .", "tsc": "echo \"Nothing to tsc\"", - "lint": "echo \"Nothing to lint\"", - "lint:ts": "echo \"Nothing to lint:ts\"", + "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:fix": "./scripts/run_in_venv.sh tox -e fix_codestyle",