zoukankan      html  css  js  c++  java
  • vscode setting

    {
      "php.validate.executablePath": "D:/phpstudy_pro/Extensions/php/php7.3.4nts/php.exe",
      "files.autoSave": "afterDelay",
      "git.ignoreMissingGitWarning": true,
      "workbench.colorTheme": "Webstorm IntelliJ Darcula Theme",
      "vetur.format.defaultFormatter.js": "vscode-typescript",
      "vetur.format.defaultFormatter.html": "js-beautify-html",
      "vetur.format.defaultFormatterOptions": {
        "js-beautify-html": {
          "wrap_line_length": 1200,
          "wrap_attributes": "auto"
        },
        "prettyhtml": {
          "printWidth": 100,
          "singleQuote": true,
          "wrapAttributes": true,
          "sortAttributes": true
        },
        "prettier": {
            "singleQuote": true,
            "semi": false
        },
        "space-before-function-paren": ["error", {
            "anonymous": "always",
            "named": "always",
            "asyncArrow": "always"
        }],
        "vue/html-self-closing": ["error", {
          "html": {
              "void": "never",
              "normal": "always",
              "component": "never"
          },
          "svg": "always",
          "math": "always"
      }],
    },
    "javascript.format.insertSpaceBeforeFunctionParenthesis": false,
    }
  • 相关阅读:
    二叉搜索树与双向链表
    复杂链表的复制
    二叉树中和为某一值的路径
    二叉树的后序遍历
    从上往下打印二叉树
    栈的压入,弹出序列
    包含min函数的栈
    JS基础知识
    有序列表、无序列表、网页的格式和布局
    样式表(宽度和高度、背景字体、对齐方式边界与边框)
  • 原文地址:https://www.cnblogs.com/lezuw/p/13334719.html
Copyright © 2011-2022 走看看