Skip to content

Commit ac328bb

Browse files
authored
Merge pull request #535 from arnoldcastro5000/arnoldcastro5000-patch-1
fix: use wildcard patterns for private key exclusions in .gitignore
2 parents 3460b98 + 7ce4b4e commit ac328bb

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

.gitignore

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
node_modules/
22
config/
3-
private.key
4-
public.key
5-
jwtRS256.key
6-
jwtRS256.key.pub
3+
4+
# Keys
5+
*.key
6+
*.key.pub
7+
*.pem
78
keygen.sh
89
database.json
9-
.env
10-
.env.test
11-
.env.development
10+
11+
# Environment variables
12+
.env*
13+
1214
.vscode
1315
.nyc_output
1416
tmp/
@@ -18,4 +20,4 @@ tmp/
1820
*.log
1921

2022
#IDEA
21-
.idea
23+
.idea

0 commit comments

Comments
 (0)