diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 27 |
1 files changed, 26 insertions, 1 deletions
@@ -1,9 +1,34 @@ +#Python __pycache__ *.pyc venv +#Scratch files .idea ignore notes.txt playlist*.js -urls*.txt
\ No newline at end of file +urls*.txt + +# JavaScript +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* |
