美文网首页
vscode 里使用 ESLint+Prettier 格式化代

vscode 里使用 ESLint+Prettier 格式化代

作者: McDu | 来源:发表于2019-09-30 09:57 被阅读0次

    .prettierrc

    {
        "arrowParens": "avoid",
        "tabWidth": 4,
        "singleQuote": true,
        "trailingComma": "none",
        "bracketSpacing": false,
        "jsxSingleQuote": true,
        "htmlWhitespaceSensitivity": "ignore",
        "printWidth": 100
    }
    

    vscode setting:

    {
      "editor.codeActionsOnSave": {
        "source.fixAll.eslint": true
      },
      "eslint.validate": ["javascript"]
     }
    

    推荐阅读:

    相关文章

      网友评论

          本文标题:vscode 里使用 ESLint+Prettier 格式化代

          本文链接:https://www.haomeiwen.com/subject/slthyctx.html