mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
90bf5518cb
* [Core] Add live linting to devcontainer * Deactivate lint on type
27 lines
No EOL
1.1 KiB
JSON
27 lines
No EOL
1.1 KiB
JSON
{
|
|
"name": "rss-bridge dev",
|
|
"build": { "dockerfile": "Dockerfile" },
|
|
"customizations": {
|
|
// Configure properties specific to VS Code.
|
|
"vscode": {
|
|
// Set *default* container specific settings.json values on container create.
|
|
"settings": {
|
|
"php.validate.executablePath": "/usr/local/bin/php",
|
|
"phpSniffer.executablesFolder": "/usr/local/bin/",
|
|
"phpcs.executablePath": "/usr/local/bin/phpcs",
|
|
"phpcs.lintOnType": false
|
|
},
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": [
|
|
"xdebug.php-debug",
|
|
"bmewburn.vscode-intelephense-client",
|
|
"philfontaine.autolaunch",
|
|
"eamodio.gitlens",
|
|
"shevaua.phpcs"
|
|
]
|
|
}
|
|
},
|
|
"forwardPorts": [3100, 9000, 9003],
|
|
"postCreateCommand": "cp .devcontainer/nginx.conf /etc/nginx/conf.d/default.conf && cp .devcontainer/xdebug.ini /usr/local/etc/php/conf.d/xdebug.ini && mkdir .vscode && cp .devcontainer/launch.json .vscode && echo '*' > whitelist.txt && chmod a+x \"$(pwd)\" && rm -rf /var/www/html && ln -s \"$(pwd)\" /var/www/html && nginx && php-fpm -D"
|
|
} |