Skip to content

Instantly share code, notes, and snippets.

@uspython
Created November 8, 2019 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uspython/4331410615568029b50d2fa3e0a707c5 to your computer and use it in GitHub Desktop.
Save uspython/4331410615568029b50d2fa3e0a707c5 to your computer and use it in GitHub Desktop.
vs code settings
{
"workbench.colorTheme": "Oceanic Reef Dark",
"quicktype.justTypes": true,
"editor.quickSuggestions": true,
"javascript.validate.enable": false,
"flow.pathToFlow": "${workspaceRoot}/node_modules/.bin/flow",
"editor.snippetSuggestions": "top",
"editor.formatOnSave": true,
"clang-format.executable": "${workspaceRoot}/node_modules/.bin/clang-format",
// Enable per-language
"[javascript]": {
"editor.formatOnSave": false
},
"files.associations": {
"**/src/res/images.ts": "plaintext"
},
"fileheader.Author": "jeffzhao",
"fileheader.LastModifiedBy": "jeffzhao",
"fileheader.tpl": "// @flow\r\n/*\r\n * App\r\n * @Author: {author}\r\n * @Date: {createTime}\r\n * @Last Modified by: {lastModifiedBy}\r\n * @Last Modified time: {updateTime}\r\n * Copyright © 2019 Innovation Co. Ltd. All rights reserved.\r\n */\r\n",
"editor.quickSuggestionsDelay": 0,
"todohighlight.toggleURI": true,
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"node_modules": false,
"sourcemap": true,
"src/paint-by-number-editor": true,
"src/paint-by-number-tester": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"python.jediEnabled": false,
"flow.enabled": false,
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
],
"eslint.packageManager": "yarn",
"java.configuration.updateBuildConfiguration": "automatic",
"java.format.enabled": false,
"java.import.gradle.enabled": false,
"java.import.gradle.wrapper.enabled": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment