package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "wrap-guide",
  3. "version": "0.41.1",
  4. "main": "./lib/main",
  5. "description": "Displays a vertical line at the 80th character in the editor.\nThis packages uses the config value of `editor.preferredLineLength` when set.",
  6. "license": "MIT",
  7. "repository": "https://github.com/pulsar-edit/pulsar",
  8. "engines": {
  9. "atom": "*"
  10. },
  11. "configSchema": {
  12. "columns": {
  13. "default": [],
  14. "type": "array",
  15. "items": {
  16. "type": "integer"
  17. },
  18. "description": "Display guides at each of the listed character widths. Leave blank for one guide at your `editor.preferredLineLength`."
  19. },
  20. "modifyPreferredLineLength": {
  21. "default": true,
  22. "type": "boolean",
  23. "description": "Modify the Editor's Preferred Line Length when changing Wrap Guide's Columns setting."
  24. },
  25. "enabled": {
  26. "default": true,
  27. "type": "boolean"
  28. },
  29. "showWrapGuide": {
  30. "type": "string",
  31. "description": "Choose when to show the wrap guide.",
  32. "enum": [
  33. {
  34. "value": "always",
  35. "description": "Always"
  36. },
  37. {
  38. "value": "wrapping",
  39. "description": "When soft wrap is enabled"
  40. },
  41. {
  42. "value": "atPreferredLineLength",
  43. "description": "When soft wrap at preferred line length is enabled"
  44. }
  45. ],
  46. "default": "always"
  47. }
  48. }
  49. }