From 5dc7bf6907a90d693edeba275b910a6481113c86 Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 1 Jan 2024 12:03:13 +0000 Subject: [PATCH] Revert "[devcontainer] add phpstan" This reverts commit b83d0d3c145818c00c68b7d9e6bbede4bc0d41ac. --- .devcontainer/devcontainer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 11ca6759..968d7a84 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -14,13 +14,15 @@ // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, + // Use 'forwardPorts' to make a list of ports inside the container available locally. "forwardPorts": [8000], - "postStartCommand": "./.docker/entrypoint.sh unitd --no-daemon --control unix:/var/run/control.unit.sock", + // Uncomment the next line to run commands after the container is created. + "postCreateCommand": "./.docker/entrypoint.sh unitd --no-daemon --control unix:/var/run/control.unit.sock", "containerEnv": { "UID": "2000", "GID": "2000", - "UPLOAD_MAX_FILESIZE": "50M" + "UPLOAD_MAX_FILESIZE": "50M", }, "customizations": { "vscode": { @@ -29,8 +31,7 @@ "ryanluker.vscode-coverage-gutters", "xdebug.php-debug", "DEVSENSE.phptools-vscode", - "ms-azuretools.vscode-docker", - "SanderRonde.phpstan-vscode" + "ms-azuretools.vscode-docker" ], "settings": { "phpunit.args": [ @@ -39,8 +40,7 @@ ], "coverage-gutters.coverageFileNames": [ "data/coverage.clover" - ], - "phpstan.configFile": "tests/phpstan.neon" + ] } } }