settings.json 248 B

12345678910
  1. {
  2. "editor.formatOnSave": true,
  3. // #每次保存的时候将代码按eslint格式进行修复
  4. "editor.codeActionsOnSave": {
  5. "source.fixAll.eslint": true
  6. },
  7. "[vue]": {
  8. "editor.defaultFormatter": "Vue.volar"
  9. }
  10. }