settings.json 454 B

12345678910111213141516171819202122
  1. {
  2. "eslint.enable": true,
  3. "puglint.enable": true,
  4. "editor.formatOnSave": false,
  5. "editor.tabSize": 2,
  6. "eslint.validate": [
  7. "javascript",
  8. "vue"
  9. ],
  10. "editor.codeActionsOnSave": {
  11. "source.fixAll.eslint": "explicit"
  12. },
  13. "i18n-ally.localesPaths": [
  14. "server/locales",
  15. ],
  16. "i18n-ally.pathMatcher": "{locale}.json",
  17. "i18n-ally.keystyle": "flat",
  18. "i18n-ally.sortKeys": true,
  19. "i18n-ally.enabledFrameworks": [
  20. "vue"
  21. ]
  22. }