zoukankan      html  css  js  c++  java
  • vscode 配置表

    {
    "git.ignoreMissingGitWarning": true,
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.snippetSuggestions": "top",
    "editor.formatOnPaste": false,
    "files.autoSave": "onFocusChange",
    "workbench.statusBar.visible": true,
    "workbench.activityBar.visible": true,
    "powermode.enabled": true,
    "powermode.presets" :"simple-rift",
    "editor.fontSize": 14,
    "workbench.sideBar.location": "left",
    "liveServer.settings.donotShowInfoMsg": true,
    "editor.tokenColorCustomizations": {
    "comments":"#13994dfc"
    },
    "liveSassCompile.settings.generateMap": false,
    "terminal.integrated.shell.windows": "C:\WINDOWS\System32\cmd.exe",
    "emmet.syntaxProfiles": {
    "vue-html": "html",
    "vue": "html"
    },
    "emmet.includeLanguages": {
    "vue-html": "html",
    "vue": "html",
    "wxml": "html"
    },
    "javascript.preferences.quoteStyle": "single",
    "files.associations": {
    "*.vue": "vue",
    "*.js": "javascript",
    "*.cjson": "jsonc",
    "*.wxss": "css",
    "*.wxs": "javascript",
    "*.wpy": "vue"
    },
    // "eslint.autoFixOnSave": true
    "eslint.validate": [
    "javascript",
    "javascriptreact",
    {
    "language": "vue",
    "autoFix": true
    },
    "vue",
    {
    "language": "wepy",
    "autoFix": true
    },
    "wepy"
    ],
    "eslint.autoFixOnSave": true,
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "minapp-vscode.disableAutoConfig": true,
    "breadcrumbs.enabled": false,
    "eslint.enable": true,
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "vetur.validation.template": false,
    "vsicons.dontShowNewVersionMessage": true,
    "git.enableSmartCommit": true,
    "files.exclude": {
    "**/.classpath": true,
    "**/.project": true,
    "**/.settings": true,
    "**/.factorypath": true
    }
    }
  • 相关阅读:
    Java中的数学计算函数汇总
    安卓杂记(三)利用自定义的PolyBezier()函数将一系列散点绘制成光滑曲线(一)
    安卓杂记(二)利用FrameLayout叠加多种view的方法
    安卓问题报告小记(一): Activity not started, its current task has been brought to the front
    安卓杂记(一) 获取时间总结整理
    node api
    javascript 坑
    async
    promise
    js去除数组中的重复项
  • 原文地址:https://www.cnblogs.com/wuxu-dl/p/11119057.html
Copyright © 2011-2022 走看看