gitignore external assets by default (#3621)

This commit is contained in:
benedikt-bartscher 2024-07-08 21:30:56 +02:00 committed by GitHub
parent b20f3ac29a
commit f71400896b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,7 +39,7 @@ class GitIgnore(SimpleNamespace):
# The gitignore file.
FILE = ".gitignore"
# Files to gitignore.
DEFAULTS = {Dirs.WEB, "*.db", "__pycache__/", "*.py[cod]"}
DEFAULTS = {Dirs.WEB, "*.db", "__pycache__/", "*.py[cod]", "assets/external/"}
class RequirementsTxt(SimpleNamespace):