Skip to content

Instantly share code, notes, and snippets.

@AshPowell
Last active July 31, 2021 03:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AshPowell/576c2162b1f157454381b7af4042ec52 to your computer and use it in GitHub Desktop.
Save AshPowell/576c2162b1f157454381b7af4042ec52 to your computer and use it in GitHub Desktop.
VS Code User Settings
{
"workbench.colorTheme": "Monokai One Dark Vivid",
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 14,
"editor.fontFamily": "Firacode-retina",
"editor.lineHeight": 30,
"editor.minimap.enabled": true,
"editor.wordWrap": "on",
"editor.fontLigatures": true,
"eslint.options": {
"configFile": "./.eslintrc.js"
},
"editor.renderIndentGuides": true,
"phpmd.validate.rulesetsFile": "./phpmd-ruleset.xml",
"php.validate.run": "onType",
"phpcs.standard": "PSR2",
"editor.minimap.maxColumn": 180,
"editor.formatOnPaste": true,
"editor.cursorBlinking": "smooth",
"editor.renderLineHighlight": "all",
"editor.dragAndDrop": true,
"window.title": "${activeEditorMedium}${separator}${rootName}",
"extensions.autoUpdate": true,
"git.enabled": false,
"search.useIgnoreFilesByDefault": true,
"phpcs.ignore": "./vendor/*,vendor/,/vendor/",
"projectManager.vscode.ignoredFolders": [
"node_modules",
"out",
"typings",
"test",
"vendor",
"public/assets/dist/"
],
"phpformatter.composer": true,
"phpformatter.arguments": [
"--custom-config=~/Projects/Website/.php_cs"
],
"phpformatter.notifications": true,
"files.associations": {
".php_cs": "php"
},
"php-cs-fixer.formatHtml": true,
"css.validate": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment