.gitignore 183 B

1234567891011121314
  1. # ignore all bin directories
  2. # matches "bin" in any subfolder
  3. bin/
  4. # ignore all target directories
  5. target/
  6. # ignore all files ending with ~
  7. *~
  8. .tmp
  9. bower_components
  10. node_modules