2024-08-08 06:12:40 +00:00
|
|
|
{
|
2024-08-09 12:04:48 +00:00
|
|
|
"workbench.colorTheme": "Dark Chai",
|
|
|
|
"workbench.editor.enablePreview": false,
|
|
|
|
"files.autoSave": "afterDelay",
|
|
|
|
"git.enableSmartCommit": true,
|
|
|
|
"git.confirmSync": false,
|
2024-08-08 06:12:40 +00:00
|
|
|
|
2024-08-09 12:04:48 +00:00
|
|
|
// PHP_CodeSniffer configuration
|
|
|
|
"phpcs.enable": true,
|
|
|
|
"phpcs.executablePath": "/home/aissel/.config/composer/vendor/bin/phpcs",
|
|
|
|
"phpcs.standard": "PSR12",
|
2024-08-08 06:12:40 +00:00
|
|
|
|
2024-08-09 12:04:48 +00:00
|
|
|
// PHP Code Beautifier and Fixer (PHPCBF) configuration
|
|
|
|
"phpcbf.enable": true,
|
|
|
|
"phpcbf.executablePath": "/home/aissel/.config/composer/vendor/bin/phpcbf",
|
2024-08-08 06:12:40 +00:00
|
|
|
|
2024-08-09 12:04:48 +00:00
|
|
|
// PHP CS Fixer configuration
|
|
|
|
"php-cs-fixer.executablePath": "/home/aissel/.config/composer/vendor/bin/php-cs-fixer",
|
|
|
|
"php-cs-fixer.executablePathWindows": "",
|
|
|
|
"php-cs-fixer.onsave": true,
|
|
|
|
"php-cs-fixer.rules": "@PSR12",
|
|
|
|
"php-cs-fixer.config": ".php-cs-fixer.php;.php-cs-fixer.dist.php;.php_cs;.php_cs.dist",
|
|
|
|
"php-cs-fixer.allowRisky": false,
|
|
|
|
"php-cs-fixer.pathMode": "override",
|
|
|
|
"php-cs-fixer.ignorePHPVersion": false,
|
|
|
|
"php-cs-fixer.exclude": [],
|
|
|
|
"php-cs-fixer.autoFixByBracket": true,
|
|
|
|
"php-cs-fixer.autoFixBySemicolon": true,
|
|
|
|
"php-cs-fixer.formatHtml": true,
|
|
|
|
"php-cs-fixer.documentFormattingProvider": true,
|
|
|
|
// "php-cs-fixer.setParallel": true,
|
2024-08-08 06:12:40 +00:00
|
|
|
|
2024-08-09 12:04:48 +00:00
|
|
|
// Format on save for PHP files
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"[php]": {
|
|
|
|
"editor.defaultFormatter": "junstyle.php-cs-fixer"
|
|
|
|
},
|
2024-08-08 06:12:40 +00:00
|
|
|
|
2024-08-09 12:04:48 +00:00
|
|
|
// Additional settings
|
|
|
|
"settingsSync.ignoredSettings": [],
|
|
|
|
"json.schemas": [],
|
|
|
|
"workbench.settings.applyToAllProfiles": [],
|
|
|
|
"[javascript]": {
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
|
}
|
2024-08-08 06:12:40 +00:00
|
|
|
}
|