.gitignore 527 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Generated by Cargo
  2. # will have compiled files and executables
  3. **/target/
  4. # These are backup files generated by rustfmt
  5. **/*.rs.bk
  6. # runtime built with docker build script
  7. joystream_runtime.wasm
  8. # Node modules directory
  9. **/node_modules
  10. # Generated by yarn
  11. yarn*
  12. !yarn.lock
  13. # JetBrains IDEs
  14. .idea
  15. # Vim
  16. .*.sw*
  17. # Visual Studio Code
  18. .vscode/
  19. # Compiled WASM code
  20. *.wasm
  21. # Temporary files
  22. **.tmp/
  23. # Istanbul report output
  24. **.nyc_output/
  25. # eslint cache
  26. **/.eslintcache
  27. # test data for local node tests
  28. test-data/
  29. tmp.*