settings.json 751 B

12345678910111213141516171819202122232425
  1. {
  2. "[dart]": {
  3. "editor.formatOnSave": true,
  4. "editor.formatOnType": true,
  5. "editor.rulers": [
  6. 120
  7. ],
  8. "editor.selectionHighlight": false,
  9. "editor.suggest.snippetsPreventQuickSuggestions": false,
  10. "editor.suggestSelection": "first",
  11. "editor.tabCompletion": "onlySnippets",
  12. "editor.wordBasedSuggestions": false
  13. },
  14. "svgviewer.enableautopreview": true,
  15. "svgviewer.previewcolumn": "Active",
  16. "svgviewer.showzoominout": true,
  17. "editor.wordWrapColumn": 120,
  18. "editor.minimap.maxColumn": 140,
  19. "prettier.printWidth": 140,
  20. "editor.wordWrap": "wordWrapColumn",
  21. "dart.lineLength": 120,
  22. "files.associations": {
  23. "*.log.*": "log"
  24. },
  25. }