Merge branch 'main' into t3chguy/module-api-v1

This commit is contained in:
Michael Telatynski
2025-05-13 12:35:18 +01:00
committed by GitHub
2 changed files with 5 additions and 4 deletions
+2 -1
View File
@@ -8,7 +8,8 @@
],
"scripts": {
"prepare": "vite build",
"lint": "tsc --noEmit",
"lint:types": "tsc --noEmit",
"lint:codestyle": "echo 'handled by lint:eslint'",
"test": "echo no tests yet"
},
"devDependencies": {
@@ -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\"",