Skip to content

Commit 8af17d1

Browse files
committed
Update gitignore and gitattributes
1 parent a9aca94 commit 8af17d1

File tree

2 files changed

+47
-35
lines changed

2 files changed

+47
-35
lines changed

.gitattributes

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Normalize line endings to LF.
2+
* text eol=lf
3+
4+
# Ensure that line endings for DOS batch files are not modified.
5+
*.bat -text
6+
7+
# Ensure the following are treated as binary.
8+
*.gif binary
9+
*.jar binary
10+
*.jpeg binary
11+
*.jpg binary
12+
*.png binary
13+
*.vsd binary

.gitignore

Lines changed: 34 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,40 @@
1-
classes
2-
*.log
3-
*.swp
4-
/src
5-
/out
6-
/bin
7-
/*/bin
8-
/conf
1+
# Miscellaneous
2+
*.java.hsp
3+
*.sonarj
4+
*.sw*
5+
.DS_Store
6+
build.sh
7+
ivy-cache
8+
argfile*
9+
classes/
10+
11+
# Log files
912
*.log
10-
*.ipr
11-
*.iml
12-
*.iws
13-
*.hprof
14-
idea
15-
/lib
16-
/doc
17-
/cobertura.ser
18-
/cruise/coverage/report
19-
/downloads
20-
/test/groovy/grails/config
21-
/test/grails-app
22-
stacktrace.log
23-
/dist
24-
/idea-target
25-
target
26-
/build
27-
/grails.iws
13+
14+
# Gradle artifacts
2815
.gradle
29-
.DS_Store
16+
.gradletasknamecache
17+
/build
18+
buildSrc/build
19+
docs/build
20+
/grace-*/build
21+
/integration-tests/build
22+
23+
# Eclipse artifacts, including WTP generated manifests
24+
bin
3025
.classpath
3126
.project
3227
.settings
33-
/*/build/*
34-
/*/.settings/*
35-
/*/out/*
36-
/*/*.iml
37-
/eclipse-build
28+
.springBeans
29+
30+
# IDEA artifacts and output dirs
31+
*.iml
32+
*.ipr
33+
*.iws
34+
.idea/*
35+
!.idea/icon.svg
36+
out
37+
test-output
3838

39-
/.idea/
40-
/grails-test-suite-uber/configured/
41-
/grails-docs/src/test/resources/docs/guide/single.pdf
39+
# VS Code
40+
.vscode/

0 commit comments

Comments
 (0)