telegram_bot_web_scrapper.sublime-project 562 B

12345678910111213141516171819202122232425262728
  1. // https://www.sublimetext.com/docs/3/projects.html
  2. {
  3. "tab_size": 2,
  4. "rulers": [80],
  5. "detect_indentation": false,
  6. "folders":
  7. [
  8. {
  9. "path": ".",
  10. "name": "project",
  11. "folder_exclude_patterns": ["build"]
  12. }
  13. ],
  14. "settings":
  15. {
  16. "AStyleFormatter":
  17. {
  18. "autoformat_on_save": true,
  19. "options_default":
  20. {
  21. "style": "gnu",
  22. "indent": "spaces",
  23. "indent-spaces": 2
  24. },
  25. }
  26. }
  27. }