infanion Package
Description
Welcome to the infanion Package! This package combines several useful extensions to enhance your development experience across various web development technologies. From Django to Next.js, PHP to Python, React to Drupal, and more, this collective package offers a comprehensive set of tools to streamline your workflow.
Included Extensions
Installation
- Open Visual Studio Code.
- Go to the Extensions view by clicking on the square icon in the Sidebar.
- Search for each extension by name.
- Click Install to install it.
- Reload Visual Studio Code.
Settings
Here's a sample settings.json
configuration you can use with these extensions:
{
"workbench.colorTheme": "Default Dark Modern",
"files.exclude": {
"**/vendor": true
},
"gitlab.showPipelineUpdateNotifications": false,
"[php]": {
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client"
},
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
"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-docblocker.returnGap": true,
"php-docblocker.qualifyClassNames": true,
"php-docblocker.alignReturn": true,
"php-docblocker.alignParams": true,
"php-docblocker.author": {
"name": "Name",
"email": "email@email.com"
},
"php-cs-fixer.lastDownload": 1713872228697,
"sonarlint.focusOnNewCode": true,
"cSpell.language": "en-GB,nl",
"cSpell.maxDuplicateProblems": 10,
"cSpell.suggestionNumChanges": 5,
"cSpell.ignorePaths": [
"package-lock.json",
"node_modules",
"vscode-extension",
".git/objects",
".vscode",
".vscode-insiders",
"**/vendor"
]
}