• vscode settings


    {
      "workbench.iconTheme": "vscode-icons",
      "explorer.confirmDragAndDrop": false,
      "explorer.confirmDelete": false,
      //配置eslint
      "editor.formatOnSave": true, //  启用保存时自动修复,默认只支持.js文件
      "eslint.validate": [
        "javascript", //  用eslint的规则检测js文件
        "vue", //  为vue文件开启保存自动修复的功能
        "html"
      ],
      "editor.codeActionsOnSave": {
        "source.fixAll.eslint": true,
        "source.organizeImports": true, // 自动调节import顺序
      },
      "vetur.ignoreProjectWarning": true, 
      "workbench.editor.enablePreview": true, // 单击不覆盖
      "eslint.migration.2_x": "off",
      "files.associations": {
        "*.vue": "html"
      },
      "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"
      ],
      "vsicons.dontShowNewVersionMessage": true,
      "http.proxyAuthorization": null,
      "workbench.colorTheme": "Ysgrifennwr",
      "sync.gist": "e6d2a2c8a04cf35e0a46af5a44ad9a07",
      "background.customImages": [
        "file:///C:/File_Box/vscode_bg/2.jfif"
      ],
      "background.style": {
        "content":"''",
        "pointer-events":"none",
        "position":"absolute",//图片位置
        "width":"100%",
        "height":"100%",
        "z-index":"99999",
        "background-repeat":"no-repeat",
        "background-size":"100%,100%",//图片大小
        "background-position": "center",
        "opacity":0.1 //透明度
    },
      "background.useDefault": false,
      "[jsonc]": {
        "editor.defaultFormatter": "HookyQR.beautify"
      },
      "[vue]": {
        "editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
      },
      "[html]": {
        "editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
      },
      "[javascript]": {
        "editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
      },
      "editor.linkedEditing": true,
    }
  • 相关阅读:
    MySQL初步
    学会编写Android Studio插件 别停留在用的程度了
    IDEA创建Java项目并配置servlet
    nginx 安装
    推荐博主
    ssh调试及指定私钥
    程序员接私活必备的 10 个开源项目
    springboot项目搭建java项目后台框架
    JAVA程序员常用网站/工具集合
    linux安装JDK教程JAVA相关
  • 原文地址:https://www.cnblogs.com/sxdjy/p/14714936.html
Copyright © 2020-2023  润新知