• vsCode安装vetur之后不生效以及解决方法


    {

    // 强制单引号

    "prettier.singleQuote": true,

    // 尽可能控制尾随逗号的打印

    "prettier.trailingComma": "all",

    // 开启 eslint 支持

    "prettier.eslintIntegration": true,

    // 保存时自动fix

    "eslint.autoFixOnSave": true,

    // 添加 vue 支持

    "eslint.validate": [

     "javascript",

     "javascriptreact",

     {

       "language": "vue",

       "autoFix": true

     }

    ],

    // 使用插件格式化 html

    "vetur.format.defaultFormatter.html": "js-beautify-html",

    // 格式化插件的配置

    "vetur.format.defaultFormatterOptions": {

     "js-beautify-html": {

       // 属性强制折行对齐

       "wrap_attributes": "force-aligned"

     }

    },

    "vetur.format.defaultFormatter":{

         "html": "prettier",

         "css": "prettier",

         "postcss": "prettier",

         "scss": "prettier",

         "less": "prettier",

         "js": "prettier",

         "ts": "prettier",

         "stylus": "stylus-supremacy"

    },

    // html颜色高亮

    "files.associations": {

         ".eslintrc": "json",

         "*.vue": "html"

    },

    "emmet.syntaxProfiles": {

         "javascript": "jsx",

         "vue": "html",

         "vue-html": "html"

    }

    }

  • 相关阅读:
    巧用数据流让 Word 文档在线阅读
    《开源公开课分享》:Java开源框架案例分享
    存储过程
    opencv求取RGB分量
    opencv中的矩阵操作
    三维高斯模型 opencv实现
    线性均值滤波和中值滤波的比较
    opencv 画延长线
    MATLAB曲线绘制
    如何在博客园发博客时插入优酷视频
  • 原文地址:https://www.cnblogs.com/alex-xyl/p/13402916.html
Copyright © 2020-2023  润新知