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;

  • 相关阅读:
    angularjs 输入框智能提示typeahead
    angularjs学习笔记--组件、$http、$q、module
    angularjs学习笔记--服务
    angularjs 学习笔记---小乱乱
    openURL调用其他程序(转)
    iOS6 中 Smart App Banners介绍和使用(转自COCOACHINA.COM)
    iOS 应用中打开其他应用 (转)
    IOS端的摇一摇功能
    IOS 应用官方接口地址
    本地推送UILocalNotification(转)
  • 原文地址:https://www.cnblogs.com/liuqd001/p/11937594.html
Copyright © 2011-2022 走看看