zoukankan      html  css  js  c++  java
  • VSCode设置

    {
    "files.eol": " ",
    "typescript.preferences.quoteStyle": "single",
    "javascript.preferences.quoteStyle": "single"
    // tab 大小为2个空格
    "editor.tabSize": 2,
    // 编辑器换行
    "editor.wordWrap": "off",
    // 保存时格式化
    "editor.formatOnSave": false,
    // 开启 vscode 文件路径导航
    "breadcrumbs.enabled": true,
    // prettier 设置语句末尾不加分号
    "prettier.semi": false,
    // prettier 设置强制单引号
    "prettier.singleQuote": true,
    // 选择 vue 文件中 template 的格式化工具
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    // vetur 的自定义设置
    "vetur.format.defaultFormatterOptions": {
    "js-beautify-html": {
    "wrap_attributes": "aligned-multiple"
    },
    "prettier": {
    "singleQuote": true,
    "semi": false,
    "printWidth": 100,
    "wrapAttributes": false,
    "sortAttributes": false
    }
    }
    }

  • 相关阅读:
    网鼎杯_2018 _Web_fakebook
    CISCN 2019-ikun
    流浪者-CTF
    wtf.sh-150
    bug-ctf
    EasyRE
    MySQL 存储引擎特性和线程模型
    InnoDB体系结构---物理存储结构
    mysql数据页结构及行格式
    linux系统清理缓存
  • 原文地址:https://www.cnblogs.com/HCXiao/p/8383785.html
Copyright © 2011-2022 走看看