• 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
    }
  • 相关阅读:
    zookeeper 简介
    缓存雪崩 缓存穿透
    SpringCloud实战2-Ribbon客户端负载均衡
    SpringCloud实战1-Eureka
    JVM笔记9-Class类文件结构
    JVM笔记8-虚拟机性能监控与故障处理工具
    JVM笔记7-内存分配与回收策略
    SpringAOP-JDK 动态代理和 CGLIB 代理
    MySQL多数据源笔记5-ShardingJDBC实战
    MySQL多数据源笔记4-Mycat中间件实战
  • 原文地址:https://www.cnblogs.com/sephiroth-wzc/p/8166270.html
Copyright © 2020-2023  润新知