Skip to content

Commit

Permalink
Development: Add .gitignore (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximilianAnzinger authored Nov 15, 2024
1 parent e5f5a68 commit 44840b6
Showing 1 changed file with 85 additions and 0 deletions.
85 changes: 85 additions & 0 deletions .github/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
######################
# Eclipse
######################
*.pydevproject
.project
.metadata
tmp/
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
.factorypath
/src/main/resources/rebel.xml

# External tool builders
.externalToolBuilders/**

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath

######################
# Intellij
######################
.idea/*
!.idea/runConfigurations/
!.idea/icon.svg
*.iml
*.iws
*.ipr
*.ids
*.orig
classes/
.IntelliJIdea*/
.local/share/JetBrains/
.java/
out/

######################
# Visual Studio Code
######################
.vscode/

######################
# Windows
######################
# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini

######################
# Mac OSX
######################
.DS_Store
.svn

# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

######################
# Directories
######################
/bin/
/deploy/

######################
# Logs
######################
*.log*

0 comments on commit 44840b6

Please sign in to comment.