Last active
March 22, 2021 04:52
-
-
Save asmattic/885ab309b56bea7feca74de5a336e975 to your computer and use it in GitHub Desktop.
VS Code settings.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
{ | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/coverage/**": true, | |
"**/node_modules/*/**": true, | |
"**/server/data/**": true, | |
"**/dist/**": true, | |
"**/modules/**": true, | |
"**/info_gathering/**": true, | |
"**/spiderfoot-3.3/**": true, | |
"**.tar.gz": true, | |
}, | |
"files.exclude": { | |
"**/coverage/**": true, | |
"**/node_modules/**": true, | |
"**/info_gathering/**": true, | |
"**/spiderfoot-3.3/**": true | |
}, | |
"editor.formatOnSave": true, | |
"[javascript]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"prettier.tabWidth": 2, | |
"gitlens.historyExplorer.enabled": false, | |
"prettier.jsxSingleQuote": true, | |
"prettier.singleQuote": true, | |
"prettier.trailingComma": "none", | |
"editor.tabSize": 2, | |
"editor.fontSize": 16, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.suggestSelection": "first", | |
"python.languageServer": "Pylance", | |
"cSpell.enableFiletypes": [ | |
"python" | |
], | |
"html.format.enable": false, | |
"[markdown]": { | |
"editor.wordWrap": "on", | |
"editor.quickSuggestions": false | |
}, | |
"files.associations": { | |
"*.mdx": "markdown" | |
}, | |
"projectManager.any.ignoredFolders": [ | |
"node_modules", | |
"out", | |
"typings", | |
"test", | |
"modules" | |
], | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"gitlens.gitExplorer.files.layout": "tree", | |
"git.autofetch": true, | |
"git.enableSmartCommit": true, | |
"git.confirmSync": false, | |
"editor.wordWrap": "on", | |
"editor.renderWhitespace": "all", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment