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"
        // },
    }
    
    
  • 相关阅读:
    使用 CSS 强制内容不换行
    奇怪的 Object reference not set to an instance of an object
    (String) 和 String.valueOf() 两种字符串转换的区别
    SQL 里面的 UNION 说明
    Flex/AIR 中 Embed 标签的使用
    把 doc、xls、pdf 转换为 swf 的相关工具
    把指定的站点加到 IE 可信站点中
    在 VS 中快速打开文件或类型
    linux配置网卡
    linux配置本地源
  • 原文地址:https://www.cnblogs.com/KevinTseng/p/15765484.html
Copyright © 2011-2022 走看看