• VS code 代码格式整理的配置


    {
    "workbench.iconTheme": "material-icon-theme",
    "vetur.validation.template": true,
    "vsicons.dontShowNewVersionMessage": true,
    "editor.minimap.enabled": false,
    "editor.fontSize": 16,
    "emmet.includeLanguages": {
    "vue-html": "html",
    "javascript": "javascriptreact"
    },
    "window.zoomLevel": 0,
    "workbench.activityBar.visible": true,
    "window.menuBarVisibility": "default",
    "workbench.statusBar.visible": true,
    "editor.tabSize": 2,
    "eslint.autoFixOnSave": true,
    "files.associations": {
    "*.vue": "vue"
    },
    "emmet.syntaxProfiles": {
    "vue-html": "html",
    "vue": "html"
    },
    "eslint.validate": [
    "javascript",
    "javascriptreact",
    "vue",
    "html",
    "js"
    ],
    "editor.tabCompletion": true,
    "editor.quickSuggestions": {
    "strings": true
    },
    "emmet.triggerExpansionOnTab": true,
    "sync.gist": "3088e0a12a32cc763f995e21a356f36a",
    "sync.lastUpload": "2018-03-04T02:50:04.711Z",
    "sync.autoDownload": false,
    "sync.autoUpload": false,
    "sync.lastDownload": "",
    "sync.forceDownload": false,
    // "sync.anonymousGist": false,
    "sync.host": "",
    "sync.pathPrefix": "",
    "sync.quietSync": false,
    "sync.askGistName": false,
    "path-intellisense.mappings": {
    "/": "${workspaceRoot}",
    "src": "${workspaceRoot}­c"
    },
    "extensions.ignoreRecommendations": false,
    "material-icon-theme.showWelcomeMessage": false,
    // "element-helper.version": "",
    "files.autoSave": "off",
    // 以下为stylus配置
    "stylusSupremacy.insertColons": false, // 是否插入冒号
    "stylusSupremacy.insertSemicolons": false, // 是否插入分好
    "stylusSupremacy.insertBraces": false, // 是否插入大括号
    "stylusSupremacy.insertNewLineAroundImports": false, // import之后是否换行
    "stylusSupremacy.insertNewLineAroundBlocks": false,
    "git.confirmSync": false,
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    // "workbench.panel.location": "bottom",
    "gitlens.advanced.messages": {
    "suppressCommitHasNoPreviousCommitWarning": false,
    "suppressCommitNotFoundWarning": false,
    "suppressFileNotUnderSourceControlWarning": false,
    "suppressGitVersionWarning": false,
    "suppressLineUncommittedWarning": false,
    "suppressNoRepositoryWarning": false,
    "suppressResultsExplorerNotice": false,
    "suppressShowKeyBindingsNotice": true,
    "suppressUpdateNotice": false,
    "su ppressWelcomeNotice": true
    },
    "team.showWelcomeMessage": false, // 两个选择器中是否换行
    "git.path": "D:/Git/bin/git.exe",
    "git.autofetch": true,
    "files.exclude": {
    "**/.git": false,
    "**/.svn": true,
    "**/.hg": true,
    "**/CVS": true,
    "**/.DS_Store": true
    },
    "editor.multiCursorModifier": "ctrlCmd",
    "element-helper.version": "2.3",
    "semistandard._legacyModuleResolve": true,
    "prettier.singleQuote": true,
    "[markdown]": {
    "editor.wordWrap": "on",
    "editor.quickSuggestions": true
    }
    }

  • 相关阅读:
    jvm类加载机制
    线程误区-join,wait(里边还是调用的wait)
    线程间通信wait和notify【All】简介
    指令重排序
    window.opener
    scrollIntoView()
    保持饥饿,保持愚蠢
    执行sql语句,不依靠实体 获取string值
    join函数详解
    html常用代码大全
  • 原文地址:https://www.cnblogs.com/yn-cn/p/10313609.html
Copyright © 2020-2023  润新知