Created
September 19, 2019 05:42
-
-
Save nicopenaredondo/d6cd25a1718a266202e3c44f196d3a78 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.formatOnPaste": true, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"emmet.triggerExpansionOnTab": true, | |
"php.suggest.basic": false, | |
"editor.autoIndent": true, | |
"emmet.includeLanguages": { | |
"blade": "html" | |
}, | |
"explorer.openEditors.visible": 0, | |
"editor.minimap.enabled": false, | |
"editor.tabCompletion": true, | |
"workbench.colorTheme": "1Dark RainCoat Bright Italic", | |
"namespaceResolver.exclude": "**/node_modules/**", // Exclude glob pattern while finding files | |
"namespaceResolver.showMessageOnStatusBar": true, // Show message on status bar instead of notification box | |
"namespaceResolver.leadingSeparator": true, | |
"phpcs.standard": "/Users/nicopenaredondo/MSYSCodingRules/phpcs.xml", | |
"phpcs.ignorePatterns": [ | |
"tests/*", | |
"database/*" | |
], | |
"phpmd.validate.rulesets": "cleancode,codesize,controversial,design,naming,unusedcode", | |
"eslint.options": { | |
"configFile": "/Users/nicopenaredondo/MSYSCodingRules/.eslintrc.json" | |
}, | |
"eslint.run": "onSave", | |
"workbench.colorCustomizations": { | |
"settings.modifiedItemForeground": "#64FFDA", | |
"activityBarBadge.background": "#388E3C", | |
"list.activeSelectionForeground": "#388E3C", | |
"list.inactiveSelectionForeground": "#388E3C", | |
"list.highlightForeground": "#388E3C", | |
"scrollbarSlider.activeBackground": "#388E3C50", | |
"editorSuggestWidget.highlightForeground": "#388E3C", | |
"textLink.foreground": "#388E3C", | |
"progressBar.background": "#388E3C", | |
"pickerGroup.foreground": "#388E3C", | |
"tab.activeBorder": "#388E3C", | |
"notificationLink.foreground": "#388E3C", | |
"editorWidget.resizeBorder": "#388E3C", | |
"editorWidget.border": "#388E3C", | |
"settings.modifiedItemIndicator": "#388E3C", | |
"settings.headerForeground": "#388E3C", | |
"panelTitle.activeBorder": "#388E3C", | |
"breadcrumb.activeSelectionForeground": "#388E3C", | |
"menu.selectionForeground": "#388E3C", | |
"menubar.selectionForeground": "#388E3C" | |
}, | |
"materialTheme.accent": "Breaking Bad", | |
"terminal.integrated.fontFamily": "monospace", | |
"window.zoomLevel": -1, | |
"files.trimTrailingWhitespace": true, | |
"editor.renderWhitespace": "boundary", | |
"explorer.confirmDelete": false, | |
"editor.rulers": [ | |
120, | |
150 | |
], | |
"php-docblocker.author": { | |
"name": "Nico Penaredondo", | |
"email": "[email protected]" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"files.maxMemoryForLargeFilesMB": 6000, | |
"terminal.integrated.rendererType": "dom", | |
"yet-phpunit.commandSuffix": "--testdox", | |
"[php]": { | |
"editor.defaultFormatter": "kokororin.vscode-phpfmt" | |
}, | |
"phpcsfixer.onsave": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment