Skip to content

Instantly share code, notes, and snippets.

@donvitonet
Forked from diego3g/settings.json
Last active August 13, 2019 11:05
Show Gist options
  • Save donvitonet/e9006d244c9119cf04cb799fc1c7d689 to your computer and use it in GitHub Desktop.
Save donvitonet/e9006d244c9119cf04cb799fc1c7d689 to your computer and use it in GitHub Desktop.
{
"workbench.colorTheme": "Dracula",
"editor.fontSize": 18,
"editor.lineHeight": 24,
"editor.fontFamily": "'Fira Code', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontLigatures": true,
"editor.rulers": [
80,
120
],
"editor.formatOnSave": false,
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "javascript",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
},
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
],
"editor.renderLineHighlight": "gutter",
"terminal.integrated.fontSize": 14,
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"window.zoomLevel": 0,
"explorer.confirmDelete": false,
"phpcs.executablePath": "vendor/bin/phpcs",
"phpcs.standard": "PSR2",
"phpstan.enabled": true,
"phpstan.path": null,
"phpstan.level": "max",
"phpstan.memoryLimit": "2048M",
"phpstan.projectFile": "src/",
"phpstan.excludeFiles": [],
"phpstan.options": [],
"workbench.iconTheme": "material-icon-theme",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment