zoukankan      html  css  js  c++  java
  • vscode配置自动格式化eslint 配置模板

    {
        "editor.tabSize": 2,
        "files.associations": {
            "*.vue": "vue"
        },

        "eslint.options": {
            "extensions": [
                ".js",
                ".vue"
            ]
        },
        "editor.codeActionsOnSave": {
            "source.fixAll.eslint": true
        },
        // 添加vue支持
        "eslint.validate": [
            "javascript",
            "javascriptreact",
            "vue"
        ],
        "search.exclude": {
            "**/node_modules": true,
            "**/bower_components": true,
            "**/dist": true
        },
        "emmet.syntaxProfiles": {
            "javascript": "jsx",
            "vue": "html",
            "vue-html": "html"
        },
        "git.confirmSync": false,
        "window.zoomLevel": 0,
        "editor.renderWhitespace": "boundary",
        "editor.cursorBlinking": "smooth",
        "editor.minimap.enabled": true,
        "editor.minimap.renderCharacters": false,
        "editor.fontFamily": "'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
        "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
        "editor.codeLens": true,
        "editor.snippetSuggestions": "top",
        "eslint.codeAction.showDocumentation": {
        
            "enable": true
        },
      }
  • 相关阅读:
    ThinkPHP Ajax 使用详解及实例
    thinkphp中常用的系统常量和系统变量
    JavaScript使用thinkPHP模板标签
    正则表达式替换连续空格
    javascript关联数组
    javascript关联数组的用法
    javascript之数组操作
    CentOS7_开放指定端口
    centos7磁盘基本信息
    SpringBoot thymeleaf——修改后如何实时生效
  • 原文地址:https://www.cnblogs.com/qiannianguyao/p/13590599.html
Copyright © 2011-2022 走看看