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
    }
  • 相关阅读:
    RRC Server安装配置过程
    开园啦~
    VB.NET 初涉线程的定义和调用
    使用 VB.NET 开发多线程
    多线程 与 单线程 的区别
    Marshal 类的内存操作的一般功能
    VB.NET 内存指针和非托管内存的应用
    OpenProcess() 函数
    DataTable与结构不同实体类之间的转换
    C#的同步和异步调用方法
  • 原文地址:https://www.cnblogs.com/sephiroth-wzc/p/8166270.html
Copyright © 2011-2022 走看看