vscode中prettier設定

與自己賽跑的青年發表於2019-01-09

在團隊合作中使用相同的程式碼規範,將對開發效率有幫組. 寫的程式碼可以自動格式化,真心好用,程式碼再也不會亂了

	"vetur.format.options.tabSize": 4,
  "vetur.format.scriptInitialIndent": true,
  "vetur.format.defaultFormatterOptions": {
    "prettyhtml": {
      "printWidth": 140
    },
    "prettier": {
      "singleQuote": true,
      "printWidth": 400,
      "proseWrap": "never"
    }
  },
  "prettier.semi": true,
  "prettier.printWidth": 400,
  "prettier.proseWrap": "never",
  "prettier.singleQuote": true,
  "vetur.validation.template": false,
  "editor.formatOnSave": true,
  "cssrem.rootFontSize": 75,
  "eslint.validate": [
    "javascript",
    {
      "language": "vue",
      "autoFix": true
    },
    "html",
    "vue"
  ],
  "eslint.autoFixOnSave": true
複製程式碼

相關文章