zoukankan      html  css  js  c++  java
  • 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,
    }
  • 相关阅读:
    (一)python 简单网页爬虫
    环形队列的应用
    AutoResetEvent 和 ManualResetEvent 多线程应用
    委托 和 事件
    Action 和 Func 的用法以及区别
    IIS 配置缓存
    IIS 发布双证书
    函数中返回局部变量的问题
    python函数2-函数参数
    Python基础语法6-冒泡排序
  • 原文地址:https://www.cnblogs.com/sxdjy/p/14714936.html
Copyright © 2011-2022 走看看