Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ htmlcov/
nosetests.xml
coverage.xml
*.cover
*node_modules*
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The pattern *node_modules* is overly broad and may unintentionally ignore files that simply contain node_modules in their name (e.g., documentation files). The standard and safer practice is to use node_modules/, which specifically targets directories named node_modules anywhere in your project.

node_modules/

.hypothesis/
.pytest_cache/

Expand Down
Loading
Loading