zoukankan      html  css  js  c++  java
  • vs code 使用笔记

    1.18以上版本更新后增加了一个功能。

    此功能默认:true

    关闭后,cpu工作正常!!

    2. 格式化

    最近在用vue 格式化代码总是自动加分号so在网上找打方法如下:

    https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode
    安装这个插件,然后在修改设置:
    "prettier.singleQuote": true,
    "prettier.semi": false

    默认设置

     {
        "git.autofetch": true,
        "window.zoomLevel": 1,
        "jshint.options": {
            "esversion": 6,
            "asi": true
        },
        "search.followSymlinks": false,
        "jshint.enable": false,
        "prettier.singleQuote": true,
        // 自动加入分号
        "prettier.semi": false,
        "files.exclude": {
            "**/.git": true,
            "**/.svn": true,
            "**/.hg": true,
            "**/CVS": true,
            "**/.DS_Store": true,
            "**/tmp": true,
            "**/node_modules": true,
            "**/bower_components": true,
            "**/dist": true
        },
        "files.watcherExclude": {
            "**/.git/objects/**": true,
            "**/.git/subtree-cache/**": true,
            "**/node_modules/**": true,
            "**/tmp/**": true,
            "**/bower_components/**": true,
            "**/dist/**": true
        },
        "vetur.format.defaultFormatter.html": "js-beautify-html",
        "vetur.validation.template": false,
        "fileheader.Author": "吴占超",
        "fileheader.LastModifiedBy": "吴占超",
        // "types" 只能在 .ts 文件中使用。关闭
        "javascript.validate.enable": false
    }
  • 相关阅读:
    c_str()函数
    Linux创建用户
    Linux vim替换命令
    计算器表达式求值源码
    结构体、共用体。面试必用
    Ubuntu打开中文输入法
    Unable to establish SSL connection
    变量的命名和使用
    C++ ARX二次开发-MFC 非模态对话框modaless dialog
    C++ ARX二次开发-创建三维实体
  • 原文地址:https://www.cnblogs.com/sephiroth-wzc/p/8166270.html
Copyright © 2011-2022 走看看