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": {}
    }
  • 相关阅读:
    编译安装php
    CentOS yum 安装LAMP PHP5.4版本
    CentOS下php安装mcrypt扩展
    CentOS安装crontab及使用方法(转)
    解决svn "cannot set LC_CTYPE locale"的问题
    CentOS下通过yum安装svn及配置
    linux svn启动和关闭
    vagrant启动报错The following SSH command responded with a no
    并行进程问题
    利用集群因子优化
  • 原文地址:https://www.cnblogs.com/zhaoxiaoying/p/14849858.html
Copyright © 2011-2022 走看看