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": {}
    }
  • 相关阅读:
    SpringBoot发送邮箱验证码
    判断一个数是否为2的整数次幂
    [模板] 虚树 && bzoj2286-[Sdoi2011]消耗战
    [模板] K-D Tree
    [模板] 平衡树: Splay, 非旋Treap, 替罪羊树
    对于约数个数上界的估计
    luogu3702-[SDOI2017]序列计数
    [模板] 线性基
    [模板] 区间mex && 区间元素种数
    bzoj4367-[IOI2014]holiday假期
  • 原文地址:https://www.cnblogs.com/zhaoxiaoying/p/14849858.html
Copyright © 2011-2022 走看看