Skip to content

Commit b978804

Browse files
committed
updated .gitignore to exclude *.log files
1 parent 111f4fb commit b978804

File tree

3 files changed

+4187
-5
lines changed

3 files changed

+4187
-5
lines changed

.gitignore

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,37 @@
11
# gitignore
22

3+
# OS generated files
34
.DS_Store
45
.idea
56
.idea/
6-
.nyc_output
77
.vscode/
8+
9+
# Build and test outputs
10+
.nyc_output
811
coverage
912
bower_components
10-
npm-debug.*
1113
node_modules
12-
index.js
13-
src/index.js
1414
sample/node_modules
15+
16+
# Debug logs
17+
npm-debug.*
18+
*.log
19+
logs/
20+
src/logs/
21+
sample/logs/
22+
**/logs/
23+
24+
# Environment and config files
1525
sample/.env
1626
oauth-jsclient.iml
27+
28+
# Package files
1729
package-lock.json
1830
yarn.lock
19-
src/logs/*
31+
32+
# Source files
33+
index.js
34+
src/index.js
35+
36+
# Other
2037
.qodo

sample/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.log

0 commit comments

Comments
 (0)