Skip to content

Commit

Permalink
chore(): Fix .gitignore (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
boddissattva authored Oct 3, 2024
1 parent a9ec0e6 commit 8206c45
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 69 deletions.
62 changes: 58 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
#SPDX-FileCopyrightText: 2017-2024 Enedis
#SPDX-License-Identifier: Apache-2.0


######################
# Maven
######################
/log/
.mvn/
!.mvn/wrapper/MavenWrapperDownloader.java
!.mvn/wrapper/maven-wrapper.properties
**/target/
/log/
!/**/src/**/target/

######################
Expand All @@ -24,12 +26,64 @@
*.ids
*.orig


######################
# Visual Studio Code
######################
.vscode/
**/.sts4-cache


######################
# Chutney
######################
**/.chutney/
.env.chutney

######################
# Package Files
######################
*.jar
*.war
*.ear
*.db

######################
# 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

######################
# Others
######################
*.class
*.*~
*~
.merge_file*
*.bundle
58 changes: 0 additions & 58 deletions acceptance-tests/.gitignore
Original file line number Diff line number Diff line change
@@ -1,65 +1,7 @@
#SPDX-FileCopyrightText: 2017-2024 Enedis
#SPDX-License-Identifier: Apache-2.0

# Chutney files
.chutney/
.env/

######################
# Maven
######################
/log/
**/target/
!/**/src/**/target/


######################
# Package Files
######################
*.jar
!xsd-1.0.0.jar
*.war
*.ear
*.db

######################
# 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

######################
# Others
######################
*.class
*.*~
*~
.merge_file*
*.bundle
7 changes: 5 additions & 2 deletions example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
#SPDX-License-Identifier: Apache-2.0

######################
# Chutney
# Package Files
######################
.chutney
!.docker/demo/conf/chutney-demo.db
!.docker/demo/conf/chutney-demo.db-shm
!.docker/demo/conf/chutney-demo.db-wal
!.docker/supervision/grafana/grafana.db
5 changes: 0 additions & 5 deletions kotlin-dsl/.gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
#SPDX-FileCopyrightText: 2017-2024 Enedis
#SPDX-License-Identifier: Apache-2.0


# Chutney reports
###############################################################################
**/.chutney/

# Other
.env

0 comments on commit 8206c45

Please sign in to comment.