zoukankan      html  css  js  c++  java
  • VSCode Eslint+Prettier配置

    打开VSCode设置

    {
        "editor.fontLigatures": true,
        "editor.fontFamily": "Fira Code Light , Consolas, 'Courier New', monospace",
        "editor.maxTokenizationLineLength": 2000000,
        // 保存时自动格式化代码
        "editor.formatOnSave": true,
        // eslint配置项,保存时自动修复错误
        "editor.codeActionsOnSave": {
            "source.fixAll": true
        },
        // 终端
        "terminal.integrated.profiles.windows": {
            "cmder": {
                "path": "C:\\WINDOWS\\System32\\cmd.exe"
            }
        },
        "terminal.integrated.defaultProfile.windows": "cmder",
        // json 最大编译值
        "json.maxItemsComputed": 500000,
        // 文件后缀支持
        "files.associations": {
            "*.tpl": "html"
        },
        "security.workspace.trust.emptyWindow": false,
        "security.workspace.trust.enabled": false,
        "editor.wordWrap": "on",
        /** 格式化 */
        "[json]": {
            "editor.defaultFormatter": "vscode.json-language-features"
        },
        "[typescriptreact]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "[typescript]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        /************** ESlint *****************/
        // "eslint.enable": true,
        "eslint.format.enable": true,
        "eslint.run": "onType",
        "eslint.nodePath": "",
        "eslint.options": {
            "extensions": [
                ".js",
                ".vue",
                ".ts",
                ".tsx"
            ]
        },
        "eslint.validate": [
            "javascript",
            "javascriptreact",
            "html",
            "vue"
        ],
        "eslint.codeAction.showDocumentation": {
            "enable": true
        },
        /************** Prettier *****************/
        // "editor.defaultFormatter": "esbenp.prettier-vscode",
        // #去掉代码结尾的分号
        // "prettier.semi": true,
        // #使用单引号替代双引号
        // "prettier.singleQuote": true,
        // "editor.fontWeight": null,
        // "explorer.confirmDelete": false,
        // "[html]": {
        //     "editor.defaultFormatter": "esbenp.prettier-vscode"
        // },
        // "less.compile": {
        //     "out": "${workspaceRoot}/"
        // },
        // // "[typescriptreact]": {
        // //     "editor.defaultFormatter": "esbenp.prettier-vscode"
        // // },
        // "[typescript]": {
        //     "editor.defaultFormatter": "esbenp.prettier-vscode"
        // },
        // "[javascript]": {
        //     "editor.defaultFormatter": "esbenp.prettier-vscode"
        // },
        // "js/ts.implicitProjectConfig.experimentalDecorators": true,
        // "[typescriptreact]": {
        //     "editor.defaultFormatter": "esbenp.prettier-vscode"
        // },
    }
    
    
  • 相关阅读:
    随机数、无重复、冒泡排序
    今天是星期几
    Button
    2012/8/5为应用指定多个配置文件
    2012/8/4解决JSP显示中文乱码
    2012/8/4 struts2学习笔记
    2012/8/4Action中result的各种转发类型
    2012/8/4为Action属性注入值
    2012/8/3SVN小入门
    2012/8/3 Extjs使用TabPanel时需要注意的问题
  • 原文地址:https://www.cnblogs.com/KevinTseng/p/15765484.html
Copyright ? 2011-2022 开发猿


http://www.vxiaotou.com