美文网首页
nodejs-vscode-Prettier

nodejs-vscode-Prettier

作者: 路人爱早茶 | 来源:发表于2019-07-18 14:32 被阅读0次
    • 配置setting中
    {
      "workbench.colorTheme": "Visual Studio Light",
    
      "workbench.colorCustomizations": {
        "[Visual Studio Light]": {
          "editor.background": "#C7EDCC"
        }
      },
      "settings": {
        "editor.fontWeight": "100",
        "editor.fontSize": 16
      },
    
      "editor.formatOnSave": true,
      "window.zoomLevel": 1,
      "workbench.statusBar.visible": false,
      "workbench.activityBar.visible": true,
      "workbench.startupEditor": "newUntitledFile",
      "editor.minimap.enabled": false,
      "workbench.sideBar.location": "right",
      "workbench.editor.openPositioning": "left",
      "extensions.ignoreRecommendations": true,
    
      "files.eol": "\n",
      "prettier.stylelintIntegration": true,
      "prettier.eslintIntegration": true,
    
      "editor.tabSize": 2,
      "workbench.iconTheme": "vscode-icons",
      "files.autoSave": "off",
    
      "[javascript]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
      },
      "prettier.printWidth": 100
    }
    
    

    相关文章

      网友评论

          本文标题:nodejs-vscode-Prettier

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