Skip to content

Commit 150bfd0

Browse files
joshuaglofek
andcommitted
gitignore: fix directory patterns
Fix the directory ignore patterns to ignore the entire directories, including child directories. https://git-scm.com/docs/gitignore#_pattern_format Co-authored-by: Ofek Lev <[email protected]> Signed-off-by: Joshua Lock <[email protected]>
1 parent 22fee97 commit 150bfd0

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.gitignore

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# root level directories
2-
dist/*
3-
build/*
4-
env/*
2+
dist/
3+
build/
4+
env/
55

66
# docs build directory
7-
docs/build/*
7+
docs/build/
88

99
# global file patterns
1010
*.log
@@ -14,20 +14,20 @@ docs/build/*
1414
*.swp
1515
*.egg-info
1616
.coverage
17-
.tox/*
18-
tests/htmlcov/*
17+
.tox/
18+
tests/htmlcov/
1919
.DS_Store
20-
.pybuild/*
20+
.pybuild/
2121
.python-version
2222
*~
2323
*.tmp
2424
.pre-commit-config.yaml
2525
.vscode
2626

2727
# Debian generated files
28-
debian/.debhelper/*
28+
debian/.debhelper/
2929
debian/*-stamp
3030
debian/files
3131
debian/*.debhelper
3232
debian/*.substvars
33-
debian/python*-tuf/*
33+
debian/python*-tuf/

0 commit comments

Comments
 (0)