RustAssistant/.gitignore

51 lines
624 B
Plaintext
Raw Normal View History

2022-04-04 14:03:10 +00:00
# These are some examples of commonly ignored file patterns.
# You should customize this list as applicable to your project.
# Learn more about .gitignore:
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore
2022-04-04 13:10:57 +00:00
2022-04-04 14:03:10 +00:00
# Node artifact files
node_modules/
dist/
2022-04-04 13:10:57 +00:00
2022-04-04 14:03:10 +00:00
# Compiled Java class files
2022-04-04 13:10:57 +00:00
*.class
2022-04-04 14:03:10 +00:00
# Compiled Python bytecode
*.py[cod]
2022-04-04 13:10:57 +00:00
2022-04-04 14:03:10 +00:00
# Log files
2022-04-04 13:10:57 +00:00
*.log
2022-04-04 14:03:10 +00:00
# Package files
*.jar
2022-04-04 13:10:57 +00:00
2022-04-04 14:03:10 +00:00
# Maven
target/
dist/
2022-04-04 13:10:57 +00:00
2022-04-04 14:03:10 +00:00
# JetBrains IDE
.idea/
2022-04-04 13:10:57 +00:00
2022-04-04 14:03:10 +00:00
# Unit test reports
TEST*.xml
2022-04-04 13:10:57 +00:00
2022-04-04 14:03:10 +00:00
# Generated by MacOS
.DS_Store
2022-04-04 13:10:57 +00:00
2022-04-04 14:03:10 +00:00
# Generated by Windows
Thumbs.db
2022-04-04 13:10:57 +00:00
2022-04-04 14:03:10 +00:00
# Applications
*.app
*.exe
*.war
2022-04-04 13:10:57 +00:00
2022-04-04 14:03:10 +00:00
# Large media files
*.mp4
*.tiff
*.avi
*.flv
*.mov
*.wmv
2022-04-04 13:10:57 +00:00