Created
June 6, 2021 14:55
-
-
Save sarim/83f00d8ae896c68d5901290b9a37f5b9 to your computer and use it in GitHub Desktop.
vscode settings.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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