• vscode舒适的字体风格


    首选项--》设置--》输入setting.json--》查找到设置文件

    添加如下配置

    "editor.tabSize": 2,
      "files.associations": {
          "*.vue": "vue"
      },
      "eslint.autoFixOnSave": true,
      "eslint.options": {
          "extensions": [
              ".js",
              ".vue"
          ]
      },
    "eslint.validate": [
        "javascript",{
            "language": "vue",
            "autoFix": true
        },"html",
        "vue"
    ],
      "search.exclude": {
          "**/node_modules": true,
          "**/bower_components": true,
          "**/dist": true
      },
      "emmet.syntaxProfiles": {
          "javascript": "jsx",
          "vue": "html",
          "vue-html": "html"
      },
      "git.confirmSync": false,
      "window.zoomLevel": 0,
      "editor.renderWhitespace": "boundary",
      "editor.cursorBlinking": "smooth",
      "editor.minimap.enabled": true,
      "editor.minimap.renderCharacters": false,
      "editor.fontFamily": "'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
      "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
      "editor.codeLens": true,
      "editor.snippetSuggestions": "top",
  • 相关阅读:
    xhr单体工厂(采用分支)
    js,div垂真居中
    pycharm快捷键
    设计模式
    WebDriver API
    单元测试框架
    python操作MySQL数据库
    python读取和写入csv文件
    搭建自动化测试环境
    java中不带package和带package的编译运行方式
  • 原文地址:https://www.cnblogs.com/yanl55555/p/11959796.html
Copyright © 2020-2023  润新知