Visual Studio Code settings
{ | |
"window.zoomLevel": 0, | |
"window.restoreFullscreen": true, | |
"workbench.startupEditor": "none", | |
"workbench.colorTheme": "lucy", | |
"workbench.activityBar.visible": true, | |
"editor.formatOnSave": true, | |
"editor.tabSize": 2, | |
"editor.minimap.enabled": false, | |
"editor.fontSize": 18, | |
"editor.fontFamily": "Dank Mono", | |
"editor.fontLigatures": false, | |
"editor.lineHeight": 24, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.overviewRulerBorder": false, | |
"editor.cursorStyle": "line", | |
"editor.cursorWidth": 2, | |
"editor.cursorBlinking": "solid", | |
"explorer.openEditors.visible": 0, | |
"explorer.confirmDelete": false, | |
"javascript.validate.enable": false, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"prettier.useTabs": false, | |
"prettier.jsxBracketSameLine": false, | |
"prettier.semi": false, | |
"prettier.singleQuote": true, | |
"eslint.enable": true, | |
"eslint.options": { | |
"extends": [ | |
"prettier" | |
], | |
"parserOptions": { | |
"ecmaVersion": 2019, | |
"sourceType": "module", | |
"ecmaFeatures": { | |
"jsx": true | |
} | |
}, | |
"env": { | |
"es6": true, | |
"node": true, | |
"jasmine": true, | |
"jest": true, | |
"browser": true, | |
"mocha": true, | |
"mongo": true, | |
"hbs": true, | |
"handlebars": true | |
}, | |
"rules": { | |
"no-console": "off", | |
"prefer-const": [ | |
"warn" | |
] | |
} | |
}, | |
"files.associations": { | |
"*.js": "javascript" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"breadcrumbs.enabled": false, | |
"workbench.fontAliasing": "auto", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment