github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/.gitignore (about) 1 # Tiltfile options 2 tilt_option.json 3 4 # Binaries for programs and plugins 5 *.exe 6 *.exe~ 7 *.dll 8 *.so 9 *.dylib 10 11 # Py junk 12 **__pycache__** 13 *.pyc 14 15 # Test binary, build with `go test -c` 16 *.test 17 18 # Output of the go coverage tool, specifically when used with LiteIDE 19 *.out 20 21 # Text editor stuff 22 .idea/* 23 .*.swp 24 25 26 # Generated yaml (from synclet deploy) 27 *.generated.yaml 28 29 *~ 30 31 .synclet-dev-image-tag 32 .#* 33 34 # goreleaser binaries 35 dist 36 37 # web dependencies 38 /web/node_modules 39 /web/.pnp 40 /web/.yarn/*.gz 41 /web/.yarn/cache 42 .pnp.js 43 44 # web testing 45 /web/coverage 46 /web/.eslintcache 47 48 # web production 49 /web/build 50 /web/storybook-static 51 52 # web env/misc 53 .DS_Store 54 .env.local 55 .env.development.local 56 .env.test.local 57 .env.production.local 58 59 npm-debug.log* 60 yarn-debug.log* 61 yarn-error.log* 62 63 # http caches from running kubectl in integration tests 64 integration/.kube