19 lines
259 B
Plaintext
19 lines
259 B
Plaintext
# Our fancy .gitignore
|
|
|
|
# Node, nobody wants this in their repo, right?
|
|
node_modules/
|
|
npm-debug.log*
|
|
|
|
# Keep secrets local please!
|
|
.env
|
|
|
|
# Editor junk, each to their own trash bin
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Mac and Windows breadcrumbs
|
|
.DS_Store
|
|
Thumbs.db
|