美文网首页
自用vscode插件

自用vscode插件

作者: 不知不怪 | 来源:发表于2021-03-11 23:58 被阅读0次
image.png
image.png
{
    "editor.fontSize": 20,
    "workbench.startupEditor": "newUntitledFile",
    "workbench.colorTheme": "Visual Studio Light",
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "vetur.format.defaultFormatterOptions": {
        "js-beautify-html": {
            "wrap_line_length": 280,
            "end_with_newline": false,
            "wrap_attributes": "auto",
            "wrap_attributes_mode": "auto",
            "wrapped_attributes_per_line": "multiple",
            "wrapped_attributes_indent": "auto",
            "wrapped_attributes_end": "auto"
        },
        "prettyhtml": {
            "printWidth": 280,
            "singleQuote": false,
            "wrapAttributes": false,
            "semi": true, // 有无分号
            "sortAttributes": true // 单引号
        }
    },
    "editor.wordWrapColumn": 280,
    "auto-close-tag.activationOnLanguage": [

        "xml",
        "php",
        "blade",
        "ejs",
        "jinja",
        "javascript",
        "javascriptreact",
        "typescript",
        "typescriptreact",
        "plaintext",
        "markdown",
        "vue",
        "liquid",
        "erb",
        "lang-cfml",
        "cfml",
        "HTML (EEx)",
        "HTML (Eex)",
        "plist"
    ],
    "[javascript]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
    "auto-rename-tag.activationOnLanguage": [

        "*"
    ],

    "files.exclude": {
        "**/.vscode": true,
        "**/node_modules": true,
        "**/.history": true,
        "**/public": true
    },
    "editor.minimap.enabled": false
}

相关文章

  • VScode 自用插件

    1. Auto Import —— 自动imports模块,适用Typescript 和 TSX 2. Co...

  • 自用VScode插件

    Auto Close Tag 自动补充闭合标签 Auto Rename Tag 同步修改头尾标签 backgrou...

  • VSCode自用插件

    Beautify Beautify 插件可以快速格式化你的代码格式,让你在编写代码时杂乱的代码结构瞬间变得非常规整...

  • 自用vscode插件

  • vscode 自用插件总结

    vscode 插件总结 Add jsdoc comments Beautify Bracket Pair Colo...

  • vscode自用常用插件

    1、any-rule 集合了所有常用的正则 2、 Autoprefixer 自动添加c...

  • 编辑器--VS Code

    VSCode 自用插件记录 记录使用的插件,供那天突然还电脑时候回来看 XML Tools 格式化xml文件等v...

  • vscode 自用插件自动保存

    所需插件 vacode设置内容 可以在使用vscode时,保存文件时文件内容可以进行自动格式化

  • vscode 自用插件 以及eslint自用规范说明

    由于项目特殊性并没有强制要求上面所有规则 表达式后面跟冒号 字符之间需要一个空格//incorrectfuncti...

  • VSCode插件整理

    VSCode插件整理 一、安装插件 前端统一开发工具:VSCode插件整理。 点击当前按钮进入vscode插件商场...

网友评论

      本文标题:自用vscode插件

      本文链接:https://www.haomeiwen.com/subject/ildaqltx.html