We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4dd651 commit 19924f4Copy full SHA for 19924f4
.gitignore
@@ -3,12 +3,21 @@ node_modules/
3
npm-debug.log*
4
yarn-debug.log*
5
yarn-error.log*
6
-package-lock.json
7
-yarn.lock
8
-*.env
+# package-lock.json # Keep lockfiles tracked!
+# yarn.lock # Keep lockfiles tracked!
+.env
9
+.env.*
10
+!/.env.example # Example env files are ok
11
dist/
12
build/
13
14
+# Log files
15
+*.log
16
+
17
+# Markdown files (except README)
18
+*.md
19
+!README.md
20
21
# Python
22
__pycache__/
23
*.pyc
@@ -38,5 +47,5 @@ Thumbs.db
38
47
*.swo
39
48
40
49
# Test Reports
41
-test-*.md
42
-test-*.json
50
+# test-*.md # Covered by *.md above
51
+# test-*.json
0 commit comments