zoukankan      html  css  js  c++  java
  • vscode setting.json (@vue/eslint-config-prettier)

    {
        "workbench.colorTheme": "Default Light+", // 主题
        "terminal.integrated.shell.windows": "C:\Windows\System32\cmd.exe", // trrminal
        "git.path": "D:\Git\bin\git.exe", // git
        "files.autoSave": "onFocusChange", // 自动保存
        "files.associations": {
            "*.vue": "vue"
        },
        "emmet.triggerExpansionOnTab": true, // tab补全
        "emmet.includeLanguages": {
            "vue-html": "html",
            "vue": "html"
        },
        "editor.tabSize": 2,
        "editor.minimap.enabled": false,
        "editor.foldingStrategy": "indentation",
        "editor.formatOnSave": true, // 保存时自动匹配
        "[javascript]": {
            "editor.formatOnSave": true,
            "editor.defaultFormatter": "esbenp.prettier-vscode" //保存时自动规范代码
        },
        "[html]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "[css]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "[less]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "[vue]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        }
    }
  • 相关阅读:
    删除前添加确认删除弹出框
    virtualbox 网络设置
    JavaScript跨域总结与解决办法
    分享一个ci 框架下取不到cookie的问题
    firebug console说明
    innodb 修改表共享空间为独立空间
    grunt 试用笔记
    apache TIME_WAIT解决办法
    负载均衡情况下获取真实ip的方法
    linux挂载硬盘
  • 原文地址:https://www.cnblogs.com/xinchenhui/p/11933555.html
Copyright © 2011-2022 走看看