Skip to content

Instantly share code, notes, and snippets.

@tommcfarlin
Last active April 10, 2018 13:28
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 tommcfarlin/db004aa90822920fe50b7751c5cf3488 to your computer and use it in GitHub Desktop.
Save tommcfarlin/db004aa90822920fe50b7751c5cf3488 to your computer and use it in GitHub Desktop.
[Visual Studio Code] Code Quality Per Language
{
// Tab Spacing per language.
"[php]": {
"editor.tabSize": 4,
"editor.autoIndent": true
},
"[scss]": {
"editor.tabSize": 2,
"editor.autoIndent": true
},
"[javascript]": {
"editor.tabSize": 2,
"editor.autoIndent": true
},
// General Editor Settings
"files.trimTrailingWhitespace": true,
"php.suggest.basic": true,
"php.validate.executablePath": "/usr/local/bin/php",
"php.validate.run": "onType",
"phpcs.enable": true,
"phpcs.executablePath": "/usr/local/bin/phpcs",
"phpcs.standard": "PSR2"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment