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
31 changes: 15 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Reminder: .gitignore does not support comments at the end of a line.

# Python bytecode and caches
__pycache__/
*.py[cod]
Expand Down Expand Up @@ -32,17 +34,20 @@ coverage.xml
# IDEs / Editors
### IntelliJ IDEA ###
out/
.idea/ # JetBrains IDEs (PyCharm, IntelliJ)
.iml
.vscode/ # Visual Studio Code (can sometimes share launch.json/settings.json if desired)
*.sublime-* # Sublime Text
nbproject/ # NetBeans
*.swp # Vim swap files
*~ # Backup files (common convention)
.idea/
*.iml
*.iws
*.ipr

.vscode/
*.sublime-*
nbproject/
*.swp
*~

# Operating System files
.DS_Store # macOS
Thumbs.db # Windows
.DS_Store
Thumbs.db


# Secrets (use with caution, prefer dedicated secret management)
Expand All @@ -53,14 +58,8 @@ Thumbs.db # Windows
*.pem
credentials.*
secrets.*
*.env # If used for secrets
*.env

# Log files
*.log
logs/


# local data and config home directory
wordspy_home/


2 changes: 2 additions & 0 deletions killerbunny/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
# Created by: Robert L. Ross
#

# In killerbunny/__init__.py
"""KillerBunny package for JSONPath Query evaluation."""
103 changes: 0 additions & 103 deletions killerbunny/evaluating/cyclic_data.txt

This file was deleted.

Loading