zoukankan      html  css  js  c++  java
  • 使用vsCode开发vue项目格式化通用配置

    {
      "editor.tabSize": 2,
      "editor.fontSize": 18,
      "editor.wordWrap": "bounded",
      "editor.wordWrapColumn": 160,
      "vetur.format.defaultFormatter.html": "js-beautify-html",
      "vetur.format.defaultFormatterOptions": {
        "js-beautify-html": {
          "wrap_attributes": "auto"
        },
        "prettyhtml": {
          "printWidth": 160,
          "singleQuote": false,
          "wrapAttributes": false,
          "sortAttributes": false
        }
      },
      "search.followSymlinks": false,
      "git.autorefresh": false,
      "explorer.confirmDelete": false,
      "[html]": {
        "editor.defaultFormatter": "HookyQR.beautify"
      },
      "background.style": {
        "content": "''",
        "pointer-events": "none",
        "position": "absolute",
        "z-index": "99999",
        "width": "50%",
        "height": "100%",
        "background-position": "50% 50%",
        "background-repeat": "no-repeat",
        "opacity": 1
      },
      "liveServer.settings.useWebExt": true,
      "liveServer.settings.donotShowInfoMsg": true,
      "workbench.sideBar.location": "left",
      "background.enabled": false,
      "liveServer.settings.fullReload": true,
      "livereload.port": 5500,
      "editor.largeFileOptimizations": false,
      "[javascript]": {
        "editor.defaultFormatter": "HookyQR.beautify"
      },
      "files.autoSave": "onFocusChange",
      "files.associations": {}
    }
  • 相关阅读:
    图片规范、注释规范、测试工具约定
    javaScript书写规范
    css书写规范
    html书写规范
    Web 前端开发规范文档
    用CSS开启硬件加速来提高网站性能
    02-其他选择器
    01-css的引入方式和常用选择器
    03-body标签中相关标签-2
    02-body标签中相关标签-1
  • 原文地址:https://www.cnblogs.com/zhaoxiaoying/p/14849858.html
Copyright © 2011-2022 走看看