zoukankan      html  css  js  c++  java
  • xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

    vscode & javascript & react & "editor.foldingStrategy": "indentation"

    javascriptreact

    
        "[javascript]": {
            "editor.formatOnSave": false,
            "editor.formatOnPaste": false,
            "editor.renderWhitespace": "all",
            "editor.foldingStrategy": "indentation",
            // "editor.foldingStrategy": "auto"
            "editor.getOutliningSpans": ""
        },
        "[javascriptreact]": {
            "editor.formatOnSave": false,
            "editor.formatOnPaste": false,
            "editor.renderWhitespace": "all",
            "editor.foldingStrategy": "indentation"
        },
    
    

    https://github.com/xgqfrms/vscode/issues/8

    OK

    demo

    
    // 将设置放入此文件中以覆盖默认设置
    {
        "files.exclude": {
            "**/.git": true,
            "**/.DS_Store": true,
            "**/jspm_packages": true,
            "**/node_modules": true,
            "**/.zip": true,
            "**/.sh": true
        },
        "search.exclude": {
            "**/node_modules": true,
            "**/bower_components": true
        },
        "files.watcherExclude": {
            "**/.git/objects/**": true,
            "**/.git/subtree-cache/**": true,
            "**/node_modules/*/**": true
        },
        "editor.formatOnSave": false,
        "editor.formatOnPaste": false,
        "editor.renderWhitespace": "all",
        "editor.fontSize": 16,
        "editor.tabSize": 4,
        "editor.multiCursorModifier": "alt",
        "editor.wordWrap": "on",
        "editor.insertSpaces": true,
        "files.encoding": "utf8",
        "terminal.integrated.shell.windows": "C:\Windows\System32\cmd.exe",
        "[typescript]": {
            "editor.formatOnSave": false,
            "editor.formatOnPaste": false
        },
        "[javascript]": {
            "editor.formatOnSave": false,
            "editor.formatOnPaste": false,
            "editor.renderWhitespace": "all",
            "editor.foldingStrategy": "indentation"
            // "editor.foldingStrategy": "auto"
        },
        "[markdown]": {
            "editor.formatOnSave": true,
            "editor.renderWhitespace": "all",
            "editor.acceptSuggestionOnEnter": "off"
        },
        "[html]": {
            "editor.formatOnSave": false,
            "editor.formatOnPaste": false,
            "editor.renderWhitespace": "all",
            "editor.acceptSuggestionOnEnter": "off"
        },
        "files.associations": {
            "*.jsx": "javascriptreact",
            "*.js": "javascriptreact"
        },
        "editor.snippetSuggestions": "top",
        // When enabled, typing /** triggers documentation automatically.
        "docthis.automaticForBlockComments": true,
        // When enabled, type information is added to comment tags.
        "docthis.includeTypes": true,
        // When enabled, memberOf information is added to comment tags on class members.
        "docthis.includeMemberOfOnClassMembers": true,
        // When enabled, memberOf information is added to comment tags on interface members.
        "docthis.includeMemberOfOnInterfaceMembers": true,
        // When enabled, JSDoc comments for functions and methods will include @description.
        "docthis.includeDescriptionTag": true,
        // When enabled, hungarian notation will be used as a type hint.
        "docthis.enableHungarianNotationEvaluation": true,
        // When enabled, will use names of params & methods as type hints.
        "docthis.inferTypesFromNames": true,
        // When enabled, will add the @author tag.
        "docthis.includeAuthorTag": true,
        // When docthis.includeAuthorTag is enabled, will add @author tag with this value.
        "docthis.authorName": "xgqfrms",
        // HTML & overwrite User settings.json
        "html.format.extraLiners": "",
        "html.format.enable": false,
        "html.format.contentUnformatted": "body, div, section, script, pre,code,textarea",
    
    }
    
    

    vscode & show whitespace

    renderWhitespace

    {
      "editor.renderWhitespace": "all"
    }
    

    https://stackoverflow.com/questions/30140595/show-whitespace-characters-in-visual-studio-code/40081253#40081253


    ©xgqfrms 2012-2020

    www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


  • 相关阅读:
    设计模式
    Linux 使用 script 分享
    动态代理中的 UndeclaredThrowableException 以及其他异常
    浅析 Spring 异常处理
    SLAM中的优化理论(二)- 非线性最小二乘
    SLAM中的优化理论(一)—— 线性最小二乘
    卡尔曼滤波器推导与解析
    Python学习(一) —— matplotlib绘制三维轨迹图
    ZED 相机 && ORB-SLAM2安装环境配置与ROS下的调试
    [转载]如何使用USSD命令设置呼叫转移
  • 原文地址:https://www.cnblogs.com/xgqfrms/p/9556120.html
Copyright © 2011-2022 走看看