zoukankan      html  css  js  c++  java
  • vscode 配置文件

    配置如下:

    {
    "window.zoomLevel": 2,
    "emmet.syntaxProfiles": {
    "vue-html": "html",
    "vue": "html"
    },
    //vetur:对html的内容使用js-beautify-html
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    "vetur.format.defaultFormatterOptions": {
    "js-beautify-html": {
    "wrap_attributes": "force-expand-multiline"
    },
    "prettyhtml": {
    "printWidth": 100,
    "singleQuote": false
    }
    },
    //workbench
    "workbench.colorTheme": "Monokai",
    "workbench.startupEditor": "welcomePage",
    "javascript.format.insertSpaceBeforeFunctionParenthesis": false,
    "eslint.enable": true,
    "eslint.autoFixOnSave": true,
    "eslint.validate": [
    "javascript",
    "javascriptreact",
    "html",
    "vue",
    {
    "language": "vue",
    "autoFix": true
    }
    ],
    "eslint.options": {
    "plugins": [
    "html"
    ]
    },
    "files.associations": {
    "*.cjson": "jsonc",
    "*.wxss": "css",
    "*.wxs": "javascript",
    "*.ejs": "html",
    "*.js": "javascript",
    "*.vue": "vue"
    },
    "emmet.includeLanguages": {
    "wxml": "html"
    },
    "update.showReleaseNotes": false,
    "telemetry.enableCrashReporter": false,
    "files.autoSave": "off",
    //editor
    "editor.formatOnSave": true,
    "editor.renderWhitespace": "all",
    "editor.mouseWheelZoom": false,
    "editor.wordWrap": "on",
    "editor.tabSize": 4,
    "editor.fontSize": 14,
    "editor.fontFamily": "Consolas, 'Courier New', monospace",
    //explorer
    "explorer.confirmDelete": false,
    "explorer.confirmDragAndDrop": false,
    "vsicons.dontShowNewVersionMessage": true
    }

    可安装的插件 :

    中文简体包;

    ESlint;

    Git History;

    Git History Diff;

    GitLens;

    Vetur;

  • 相关阅读:
    mysql联合查询更新数据库例子
    jquery绑定事件时如何向事件函数里传参数
    bootstrap栅格例子
    myeclipse 给类与方法添加注解模板方法
    response 返回js的alert()语句,中文乱码如何解决
    h5-圆角的使用-案例安卓机器人
    h5-拖拽接口
    h5-应用级缓存
    h5-sessionStorage储存的使用
    h5-localStorage储存的使用
  • 原文地址:https://www.cnblogs.com/liuqd001/p/11937594.html
Copyright © 2011-2022 走看看