.cleanignore 572 B

12345678910111213141516171819202122232425
  1. # files that match any pattern from .cleanignore are NOT removed by
  2. # the `jlpm clean:slate` command. Same syntax as .gitignore (plus the @).
  3. #
  4. # @: if a pattern starts with "@", some includes are automatically added,
  5. # in addition to the base exclude pattern. For example:
  6. #
  7. # @*.foo
  8. #
  9. # will add:
  10. #
  11. # *.foo
  12. # !packages/**/*.foo
  13. # !**/node_modules/**/*.foo
  14. #
  15. # These help ensure that all node_modules dirs are cleaned and that
  16. # sibling installs of labextensions are not cleaned.
  17. # jetbrains IDE stuff
  18. @*.iml
  19. @.idea/
  20. # ms IDE stuff
  21. @*.code-workspace
  22. @.history
  23. @.vscode