settings.json 726 B

1234567891011121314151617181920212223
  1. {
  2. "editor.codeActionsOnSave": {
  3. "source.fixAll": "explicit",
  4. "source.organizeImports": "explicit",
  5. "source.sortMembers": "explicit"
  6. },
  7. "editor.quickSuggestions": {
  8. "other": "on",
  9. "comments": "off",
  10. "strings": "on"
  11. },
  12. // 2. 确保在输入特定字符(如引号、等号)时立即触发提示
  13. "editor.suggestOnTriggerCharacters": true,
  14. // 3. 如果你在写属性名后进入了 Snippet 模式(光标在引号内),
  15. // 下面这一项设置为 false 可以防止 Snippet 模式阻塞建议列表
  16. "editor.suggest.snippetsPreventQuickSuggestions": false,
  17. "tailwindCSS.experimental.classRegex": [
  18. [
  19. "clsx\\(([^)]*)\\)",
  20. "(?:'|\"|`)([^']*)(?:'|\"|`)"
  21. ]
  22. ]
  23. }