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,
    }
  • 相关阅读:
    LinQ&EF任我行(一)LinQ to SQL (转)
    WPF数据模板和控件模板
    Sql优化
    SQL锁表语句
    js动态创建dom
    js实现等待n秒后按钮可用
    js关于事件冒泡
    工作流学习(个人总结)
    sql常用函数
    将Datatable序列化为Json对象返回到客户端
  • 原文地址:https://www.cnblogs.com/sxdjy/p/14714936.html
Copyright © 2011-2022 走看看