babel.sublime-project 449 B

1234567891011121314151617181920212223242526
  1. {
  2. "settings": {
  3. "rulers": [
  4. 80
  5. ],
  6. // Set to false to disable detection of tabs vs. spaces on load
  7. "detect_indentation": false,
  8. "translate_tabs_to_spaces": true,
  9. "tab_size": 2
  10. },
  11. "folders": [{
  12. "path": ".",
  13. "folder_exclude_patterns": [
  14. "packages/*/lib",
  15. "node_modules"
  16. ],
  17. "file_exclude_patterns": [
  18. ]
  19. }]
  20. }