Last active
December 3, 2024 11:39
-
-
Save EQuimper/e619cdcd555798ea2f06aa009ec7fa8d to your computer and use it in GitHub Desktop.
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.fontSize": 15, | |
"editor.fontFamily": "Consolas", | |
"editor.tabSize": 2, | |
"editor.wordWrapColumn": 80, | |
"editor.fontLigatures": true, | |
"editor.snippetSuggestions": "top", | |
"editor.minimap.enabled": true, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.DS_Store": true, | |
"**/node_modules": true, | |
"**/.idea": true, | |
"**/.vscode": false, | |
"**/yarn.lock": true, | |
"**/tmp": true | |
}, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/node_modules/**": true, | |
"**/tmp": true | |
}, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/.git": true, | |
"**/.DS_Store": true, | |
"**/tmp": true, | |
"**/coverage": true, | |
"**/ios": true, | |
"**/android": true | |
}, | |
"files.trimTrailingWhitespace": true, | |
"html.suggest.html5": true, | |
"npm-intellisense.scanDevDependencies": true, | |
"stylelint.enable": true, | |
"typescript.check.tscVersion": false, | |
"window.zoomLevel": 0, | |
"terminal.external.osxExec": "iTerm.app", | |
"javascript.validate.enable": false, | |
"extensions.autoUpdate": true, | |
"terminal.integrated.fontSize": 13, | |
"terminal.integrated.fontFamily": "Consolas", | |
"terminal.integrated.cursorStyle": "line", | |
"sync.gist": "95e4cfd731754a9c023d59c0538fa6e6", | |
"sync.lastUpload": "2017-06-15T15:06:31.207Z", | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.lastDownload": "1970-01-01T00:00:00.000Z", | |
"sync.forceDownload": false, | |
"sync.anonymousGist": false, | |
"color-highlight.markerType": "outline", | |
"vsicons.projectDetection.disableDetect": true, | |
"vsicons.dontShowNewVersionMessage": true, | |
"fileHeaderCommentHelper.languageConfigs": { | |
"language_javascript": { | |
"template": [ | |
"/**", | |
" * Project: $(projectName)", | |
" * File: $(currentFile)", | |
" * Author: Emanuel Quimper", | |
" */" | |
] | |
} | |
}, | |
"workbench.welcome.enabled": false, | |
"workbench.iconTheme": "material-icon-theme", | |
"material-icon-theme.showUpdateMessage": false, | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"eslint.autoFixOnSave": true, | |
"editor.formatOnSave": false, | |
"editor.renderIndentGuides": true, | |
"flow.useNPMPackagedFlow": true, | |
"prettier.singleQuote": true, | |
"prettier.printWidth": 80, | |
"prettier.trailingComma": "all", | |
"prettier.semi": true, | |
"prettier.useTabs": false, | |
"prettier.bracketSpacing": true, | |
"sync.quietSync": false, | |
"workbench.colorTheme": "Monokai" | |
} |
Thank you :)
Worked for me
Thank you :)
thank you
@EQuimper thank you very much ;)
worked perfect! thankyou so much
Make one for Fortnite
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Line 7: VS Code said the wrappingColumn is deprecated and should be replaced with the lines below. I am using Windows 10