Last active
October 24, 2018 01:58
-
-
Save imajinyun/a692af3bf52cf677e207a75f399fec34 to your computer and use it in GitHub Desktop.
vscode-config.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
{ | |
"material-icon-theme.folders.theme": "specific", | |
"workbench.iconTheme": "eq-material-theme-icons", | |
"files.autoSave": "onFocusChange", | |
"editor.fontSize": 13, | |
"workbench.colorTheme": "Material Theme", | |
"editor.cursorStyle": "line", | |
"editor.renderWhitespace": "none", | |
"files.associations": { | |
"*.styl": "scss", | |
"*.ctp": "php", | |
"*.blade.php": "php" | |
}, | |
"html.format.endWithNewline": true, | |
"html.format.maxPreserveNewLines": null, | |
"blade.format.enable": true, | |
"php.validate.executablePath": "/usr/local/bin/php", | |
"beautify.language": { | |
"js": { | |
"type": ["javascript", "json"], | |
"filename": [".jshintrc", ".jsbeautify"] | |
}, | |
"css": ["css", "scss"], | |
"html": ["htm", "html", "blade", "blade.php"] | |
}, | |
// "phpcs.ignorePatterns": [ | |
// "*/vendor/*", | |
// "*/tests/*" | |
// ], | |
// "phpcs.executablePath": "/Users/majinyun/.composer/vendor/bin/phpcs", | |
// "phpcs.standard": "PSR2", | |
"php-cs-fixer.allowRisky": true, | |
"php-cs-fixer.executablePath": "/usr/local/bin/php-cs-fixer", | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.fontFamily": "'DejaVu Sans Mono for Powerline', Menlo, Monaco, 'Courier New', monospace", | |
"terminal.integrated.fontSize": 13, | |
"terminal.integrated.letterSpacing": 1, | |
"php-docblocker.author": { | |
"name": "imajinyun", | |
"email": "[email protected]" | |
}, | |
"php-docblocker.qualifyClassNames": true, | |
"php-docblocker.returnGap": true, | |
"php-docblocker.useShortNames": true, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"editor.trimAutoWhitespace": true, | |
"editor.minimap.enabled": false, | |
"markdown-preview-enhanced.liveUpdate": false, | |
"workbench.colorCustomizations": { | |
"activityBarBadge.background": "#00BCD4", | |
"list.activeSelectionForeground": "#00BCD4", | |
"list.inactiveSelectionForeground": "#00BCD4", | |
"list.highlightForeground": "#00BCD4", | |
"scrollbarSlider.activeBackground": "#00BCD450", | |
"editorSuggestWidget.highlightForeground": "#00BCD4", | |
"textLink.foreground": "#00BCD4", | |
"progressBar.background": "#00BCD4", | |
"pickerGroup.foreground": "#00BCD4", | |
"tab.activeBorder": "#00BCD4", | |
"notificationLink.foreground": "#00BCD4", | |
"editorWidget.resizeBorder": "#00BCD4", | |
"editorWidget.border": "#00BCD4", | |
"panelTitle.activeBorder": "#00BCD4" | |
}, | |
"material-icon-theme.folders.color": "#90a4ae", | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": false, | |
"strings": true | |
}, | |
"window.zoomLevel": 0, | |
"sassFormat.indent": 2, | |
"[php]": {}, | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.showSuggestionsAsSnippets": true, | |
"editor.snippetSuggestions": "bottom", | |
"extensions.ignoreRecommendations": false, | |
"php.validate.run": "onType", | |
"eslint.packageManager": "yarn", | |
"npm.packageManager": "yarn", | |
"namespaceResolver.sortAlphabetically": true, | |
"git.enableSmartCommit": true, | |
"workbench.startupEditor": "welcomePage", | |
"breadcrumbs.enabled": true, | |
"editor.renderControlCharacters": true, | |
"namespaceResolver.sortNatural": true, | |
"explorer.openEditors.visible": 0, | |
"workbench.activityBar.visible": true, | |
"workbench.statusBar.visible": true, | |
"editor.tabCompletion": true, | |
"namespaceResolver.sortOnSave": true, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"vue", | |
"vue-html" | |
], | |
"php.validate.enable": false, | |
"python.jediEnabled": false, | |
"php.suggest.basic": false | |
} |
Author
imajinyun
commented
Oct 24, 2018
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment