Skip to content

Commit 1c23368

Browse files
committed
update
1 parent 27062f2 commit 1c23368

File tree

2 files changed

+155
-1
lines changed

2 files changed

+155
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/.DS_Store
1+
/.DS_Store

paperlessqms-spring/.gitignore

Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
######################
2+
# Node
3+
######################
4+
/node/
5+
node_tmp/
6+
node_modules/
7+
npm-debug.log.*
8+
/.awcache/*
9+
/.cache-loader/*
10+
11+
######################
12+
# SASS
13+
######################
14+
.sass-cache/
15+
16+
######################
17+
# Eclipse
18+
######################
19+
*.pydevproject
20+
.project
21+
.metadata
22+
tmp/
23+
tmp/**/*
24+
*.tmp
25+
*.bak
26+
*.swp
27+
*~.nib
28+
local.properties
29+
.classpath
30+
.settings/
31+
.loadpath
32+
.factorypath
33+
34+
# External tool builders
35+
.externalToolBuilders/**
36+
37+
# Locally stored "Eclipse launch configurations"
38+
*.launch
39+
40+
# CDT-specific
41+
.cproject
42+
43+
# PDT-specific
44+
.buildpath
45+
46+
# STS-specific
47+
/.sts4-cache/*
48+
49+
######################
50+
# IntelliJ
51+
######################
52+
.idea/
53+
*.iml
54+
*.iws
55+
*.ipr
56+
*.ids
57+
*.orig
58+
classes/
59+
out/
60+
61+
######################
62+
# Visual Studio Code
63+
######################
64+
.vscode/*
65+
!.vscode/settings.json
66+
!.vscode/tasks.json
67+
!.vscode/launch.json
68+
!.vscode/extensions.json
69+
*.code-workspace
70+
71+
######################
72+
# Maven
73+
######################
74+
/log/
75+
/target/
76+
77+
######################
78+
# Gradle
79+
######################
80+
.gradle/
81+
/build/
82+
83+
######################
84+
# Package Files
85+
######################
86+
*.jar
87+
*.war
88+
*.ear
89+
*.db
90+
91+
######################
92+
# Windows
93+
######################
94+
# Windows image file caches
95+
Thumbs.db
96+
97+
# Folder config file
98+
Desktop.ini
99+
100+
######################
101+
# Mac OSX
102+
######################
103+
.DS_Store
104+
.svn
105+
106+
# Thumbnails
107+
._*
108+
109+
# Files that might appear on external disk
110+
.Spotlight-V100
111+
.Trashes
112+
113+
######################
114+
# Directories
115+
######################
116+
/bin/
117+
/deploy/
118+
119+
######################
120+
# Logs
121+
######################
122+
*.log*
123+
124+
######################
125+
# Others
126+
######################
127+
*.class
128+
*.*~
129+
*~
130+
.merge_file*
131+
132+
######################
133+
# Gradle Wrapper
134+
######################
135+
!gradle/wrapper/gradle-wrapper.jar
136+
137+
######################
138+
# Maven Wrapper
139+
######################
140+
!.mvn/wrapper/maven-wrapper.jar
141+
142+
######################
143+
# ESLint
144+
######################
145+
.eslintcache
146+
147+
######################
148+
# Code coverage
149+
######################
150+
/coverage/
151+
/.nyc_output/
152+
153+
/*.sql
154+
/h2/*

0 commit comments

Comments
 (0)