forked from susom/mirc-ctp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
61 lines (51 loc) · 1.11 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Common build output from Maven, Ant, IntelliJ, Eclipse
/target/
/build/
/out/
/classes/
/dependency-reduced-pom.xml
# Local configuration for development purposes
/conf/
local.*
*.local.*
# IDE project files for IntelliJ - it tends to generate lots of files depending
# on your exact version, which plugins are installed, etc., so ignore everything
# except for a vetted list of things we want. In particular, we want code
# formatting style (which needs to match the checkstyle Maven configuration).
/.idea/*
!/.idea/codeStyleSettings.xml
!/.idea/dataSources.ids
!/.idea/dataSources.xml
!/.idea/vcs.xml
!/.idea/compiler.xml
!/.idea/encodings.xml
!/.idea/modules.xml
!/.idea/copyright/
!/.idea/inspectionProfiles/
# Eclipse project files
.settings/
.classpath
.project
# VSCode project files
/.vscode/
# Working directories for development
/.hsql/
/.vagrant/
/.vertx/
/file-uploads/
# Don't want any encryption keys in version control
*.jks
*.jceks
*.pkcs12
*.pk12
*.pem
*.pfx
# Operating system garbage
.DS_Store
[Tt]humbs.db
# Git artifacts
*.orig
# Just in case you put this in Subversion
.svn/
# Emacs backup files
*~