Skip to content

Instantly share code, notes, and snippets.

@sarim
Created June 6, 2021 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sarim/83f00d8ae896c68d5901290b9a37f5b9 to your computer and use it in GitHub Desktop.
Save sarim/83f00d8ae896c68d5901290b9a37f5b9 to your computer and use it in GitHub Desktop.
vscode settings.json
{
"php-cs-fixer.rules": {
"@Symfony": true,
"@DoctrineAnnotation": true,
"array_indentation": true,
"native_function_invocation": true,
"psr_autoloading": true,
"doctrine_annotation_braces": {"syntax" : "with_braces"},
"method_argument_space": {"ensure_fully_multiline" : true}
},
"php-cs-fixer.onsave": true,
"php-cs-fixer.showOutput": true,
"php-cs-fixer.allowRisky": true,
"namespaceResolver.autoSort": false,
"namespaceResolver.sortOnSave": false,
"go.useLanguageServer": true,
"search.useIgnoreFiles": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/var": true,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment