tree-sitter-analyzer 0.6.2__tar.gz → 0.8.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of tree-sitter-analyzer might be problematic. Click here for more details.

Files changed (103) hide show
  1. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/.gitignore +281 -281
  2. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/.pre-commit-config.yaml +91 -91
  3. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/AI_COLLABORATION_GUIDE.md +273 -273
  4. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/CHANGELOG.md +581 -483
  5. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/CODE_STYLE_GUIDE.md +359 -359
  6. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/CONTRIBUTING.md +190 -190
  7. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/LLM_CODING_GUIDELINES.md +585 -585
  8. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/MCP_SETUP_DEVELOPERS.md +180 -180
  9. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/MCP_SETUP_USERS.md +163 -163
  10. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/PKG-INFO +4 -1
  11. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/README.md +214 -214
  12. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/README_ja.md +214 -214
  13. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/README_zh.md +214 -214
  14. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/check_quality.py +131 -131
  15. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/docs/api.md +173 -173
  16. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/examples/BigService.java +1419 -1419
  17. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/examples/BigService.json +938 -938
  18. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/examples/BigService.summary.json +650 -650
  19. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/examples/JavaDocTest.java +78 -78
  20. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/examples/MultiClass.java +54 -54
  21. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/examples/Sample.java +178 -178
  22. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/examples/calculate_token_comparison.py +255 -255
  23. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/examples/sample.py +256 -256
  24. tree_sitter_analyzer-0.8.0/examples/security_demo.py +282 -0
  25. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/llm_code_checker.py +384 -384
  26. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/pyproject.toml +4 -1
  27. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/pytest.ini +34 -34
  28. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/__init__.py +132 -132
  29. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/__main__.py +11 -11
  30. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/api.py +533 -533
  31. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli/__init__.py +39 -39
  32. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli/__main__.py +12 -12
  33. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli/commands/__init__.py +26 -26
  34. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli/commands/advanced_command.py +88 -88
  35. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli/commands/base_command.py +160 -160
  36. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli/commands/default_command.py +18 -18
  37. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli/commands/partial_read_command.py +141 -141
  38. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli/commands/query_command.py +81 -81
  39. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli/commands/structure_command.py +138 -138
  40. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli/commands/summary_command.py +101 -101
  41. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli/commands/table_command.py +235 -235
  42. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli/info_commands.py +121 -121
  43. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/cli_main.py +297 -297
  44. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/core/__init__.py +15 -15
  45. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/core/analysis_engine.py +555 -555
  46. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/core/cache_service.py +320 -320
  47. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/core/engine.py +566 -566
  48. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/core/parser.py +293 -293
  49. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/encoding_utils.py +459 -459
  50. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/exceptions.py +406 -337
  51. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/file_handler.py +210 -210
  52. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/formatters/__init__.py +1 -1
  53. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/formatters/base_formatter.py +167 -167
  54. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/formatters/formatter_factory.py +78 -78
  55. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/interfaces/__init__.py +9 -9
  56. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/interfaces/cli.py +528 -528
  57. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/interfaces/cli_adapter.py +343 -343
  58. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/interfaces/mcp_adapter.py +206 -206
  59. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/interfaces/mcp_server.py +425 -405
  60. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/languages/__init__.py +10 -10
  61. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/languages/javascript_plugin.py +446 -446
  62. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/languages/python_plugin.py +755 -755
  63. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/__init__.py +31 -31
  64. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/resources/__init__.py +44 -44
  65. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/resources/code_file_resource.py +209 -209
  66. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/server.py +346 -333
  67. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/tools/__init__.py +30 -30
  68. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/tools/analyze_scale_tool.py +654 -654
  69. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/tools/analyze_scale_tool_cli_compatible.py +247 -247
  70. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/tools/base_tool.py +54 -54
  71. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/tools/read_partial_tool.py +300 -300
  72. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/tools/table_format_tool.py +362 -362
  73. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/tools/universal_analyze_tool.py +543 -543
  74. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/utils/__init__.py +107 -107
  75. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/utils/error_handler.py +549 -549
  76. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/output_manager.py +253 -253
  77. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/plugins/__init__.py +280 -280
  78. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/plugins/base.py +529 -529
  79. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/plugins/manager.py +379 -379
  80. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/queries/__init__.py +26 -26
  81. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/queries/java.py +391 -391
  82. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/queries/javascript.py +148 -148
  83. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/queries/python.py +285 -285
  84. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/queries/typescript.py +229 -229
  85. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/query_loader.py +257 -257
  86. tree_sitter_analyzer-0.8.0/tree_sitter_analyzer/security/__init__.py +22 -0
  87. tree_sitter_analyzer-0.8.0/tree_sitter_analyzer/security/boundary_manager.py +237 -0
  88. tree_sitter_analyzer-0.8.0/tree_sitter_analyzer/security/regex_checker.py +292 -0
  89. tree_sitter_analyzer-0.8.0/tree_sitter_analyzer/security/validator.py +224 -0
  90. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/table_formatter.py +652 -473
  91. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/utils.py +277 -277
  92. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/upload_to_pypi.py +170 -170
  93. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/uv.lock +836 -830
  94. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/DEPLOYMENT_GUIDE.md +0 -0
  95. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/build_standalone.py +0 -0
  96. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/core/query.py +0 -0
  97. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/formatters/java_formatter.py +0 -0
  98. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/formatters/python_formatter.py +0 -0
  99. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/language_detector.py +0 -0
  100. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/language_loader.py +0 -0
  101. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/languages/java_plugin.py +0 -0
  102. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/mcp/resources/project_stats_resource.py +0 -0
  103. {tree_sitter_analyzer-0.6.2 → tree_sitter_analyzer-0.8.0}/tree_sitter_analyzer/models.py +0 -0
@@ -1,281 +1,281 @@
1
- # Byte-compiled / optimized / DLL files
2
- __pycache__/
3
- *.py[cod]
4
- *$py.class
5
-
6
- # C extensions
7
- *.so
8
-
9
- # Distribution / packaging
10
- .Python
11
- build/
12
- develop-eggs/
13
- dist/
14
- downloads/
15
- eggs/
16
- .eggs/
17
- lib/
18
- lib64/
19
- parts/
20
- sdist/
21
- var/
22
- wheels/
23
- share/python-wheels/
24
- *.egg-info/
25
- .installed.cfg
26
- *.egg
27
- MANIFEST
28
-
29
- # PyInstaller
30
- # Usually these files are written by a python script from a template
31
- # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
- *.manifest
33
- *.spec
34
-
35
- # Installer logs
36
- pip-log.txt
37
- pip-delete-this-directory.txt
38
-
39
- # Unit test / coverage reports
40
- htmlcov/
41
- .tox/
42
- .nox/
43
- .coverage
44
- .coverage.*
45
- .cache
46
- nosetests.xml
47
- coverage.xml
48
- *.cover
49
- *.py,cover
50
- .hypothesis/
51
- .pytest_cache/
52
- cover/
53
-
54
- # Translations
55
- *.mo
56
- *.pot
57
-
58
- # Django stuff:
59
- *.log
60
- local_settings.py
61
- db.sqlite3
62
- db.sqlite3-journal
63
-
64
- # Flask stuff:
65
- instance/
66
- .webassets-cache
67
-
68
- # Scrapy stuff:
69
- .scrapy
70
-
71
- # Sphinx documentation
72
- docs/_build/
73
-
74
- # PyBuilder
75
- .pybuilder/
76
- target/
77
-
78
- # Jupyter Notebook
79
- .ipynb_checkpoints
80
-
81
- # IPython
82
- profile_default/
83
- ipython_config.py
84
-
85
- # pyenv
86
- # For a library or package, you might want to ignore these files since the code is
87
- # intended to run in multiple environments; otherwise, check them in:
88
- # .python-version
89
-
90
- # pipenv
91
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
- # install all needed dependencies.
95
- #Pipfile.lock
96
-
97
- # poetry
98
- # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
- # This is especially recommended for binary packages to ensure reproducibility, and is more
100
- # commonly ignored for libraries.
101
- # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
- #poetry.lock
103
-
104
- # pdm
105
- # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
- #pdm.lock
107
- # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
- # in version control.
109
- # https://pdm.fming.dev/#use-with-ide
110
- .pdm.toml
111
-
112
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113
- __pypackages__/
114
-
115
- # Celery stuff
116
- celerybeat-schedule
117
- celerybeat.pid
118
-
119
- # SageMath parsed files
120
- *.sage.py
121
-
122
- # Environments
123
- .env
124
- .venv
125
- env/
126
- venv/
127
- ENV/
128
- env.bak/
129
- venv.bak/
130
-
131
- # Spyder project settings
132
- .spyderproject
133
- .spyproject
134
-
135
- # Rope project settings
136
- .ropeproject
137
-
138
- # mkdocs documentation
139
- /site
140
-
141
- # mypy
142
- .mypy_cache/
143
- .dmypy.json
144
- dmypy.json
145
-
146
- # Pyre type checker
147
- .pyre/
148
-
149
- # pytype static type analyzer
150
- .pytype/
151
-
152
- # Cython debug symbols
153
- cython_debug/
154
-
155
- # PyCharm
156
- # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157
- # be added to the global gitignore or merged into this project gitignore. For a PyCharm
158
- # project, it is recommended to use the following settings for the Project Structure:
159
- # File | Settings | Project Structure | Add Content Root | Exclude files | *.pyc
160
- .idea/
161
-
162
- # VS Code
163
- .vscode/
164
- *.code-workspace
165
-
166
- # Local History for Visual Studio Code
167
- .history/
168
-
169
- # Built Visual Studio Code Extensions
170
- *.vsix
171
-
172
- # macOS
173
- .DS_Store
174
- .AppleDouble
175
- .LSOverride
176
-
177
- # Icon must end with two \r
178
- Icon
179
-
180
- # Thumbnails
181
- ._*
182
-
183
- # Files that might appear in the root of a volume
184
- .DocumentRevisions-V100
185
- .fseventsd
186
- .Spotlight-V100
187
- .TemporaryItems
188
- .Trashes
189
- .VolumeIcon.icns
190
- .com.apple.timemachine.donotpresent
191
-
192
- # Directories potentially created on remote AFP share
193
- .AppleDB
194
- .AppleDesktop
195
- Network Trash Folder
196
- Temporary Items
197
- .apdisk
198
-
199
- # Windows
200
- Thumbs.db
201
- Thumbs.db:encryptable
202
- ehthumbs.db
203
- ehthumbs_vista.db
204
-
205
- # Dump file
206
- *.stackdump
207
-
208
- # Folder config file
209
- [Dd]esktop.ini
210
-
211
- # Recycle Bin used on file shares
212
- $RECYCLE.BIN/
213
-
214
- # Windows Installer files
215
- *.cab
216
- *.msi
217
- *.msix
218
- *.msm
219
- *.msp
220
-
221
- # Windows shortcuts
222
- *.lnk
223
-
224
- # Linux
225
- *~
226
-
227
- # temporary files which can be created if a process still has a handle open of a deleted file
228
- .fuse_hidden*
229
-
230
- # KDE directory preferences
231
- .directory
232
-
233
- # Linux trash folder which might appear on any partition or disk
234
- .Trash-*
235
-
236
- # .nfs files are created when an open file is removed but is still being accessed
237
- .nfs*
238
-
239
- # Project specific files
240
- error.log
241
- *.log
242
- input_handler.py
243
- prompt_config.json
244
- user_input_prompt.md
245
- ISSUE_TRACKING.md
246
- OPTIMIZATION_REPORT.md
247
-
248
-
249
- # Development and temporary files
250
- prompt_history/
251
- temp/
252
- tmp/
253
- .temp/
254
-
255
- # Tree-sitter specific
256
- tree-sitter-*/
257
- *.so
258
- *.dylib
259
- *.dll
260
-
261
- # UV lock file (keep uv.lock for reproducible builds)
262
- # uv.lock
263
-
264
- # Benchmark and performance files
265
- benchmark_results/
266
- performance_data/
267
-
268
- # Local configuration files
269
- local_config.py
270
- local_settings.py
271
- .local/
272
-
273
- # Editor backup files
274
- *~
275
- *.swp
276
- *.swo
277
- *#
278
- .#*
279
-
280
- # Compiled tree-sitter parsers
281
- parsers/
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/#use-with-ide
110
+ .pdm.toml
111
+
112
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113
+ __pypackages__/
114
+
115
+ # Celery stuff
116
+ celerybeat-schedule
117
+ celerybeat.pid
118
+
119
+ # SageMath parsed files
120
+ *.sage.py
121
+
122
+ # Environments
123
+ .env
124
+ .venv
125
+ env/
126
+ venv/
127
+ ENV/
128
+ env.bak/
129
+ venv.bak/
130
+
131
+ # Spyder project settings
132
+ .spyderproject
133
+ .spyproject
134
+
135
+ # Rope project settings
136
+ .ropeproject
137
+
138
+ # mkdocs documentation
139
+ /site
140
+
141
+ # mypy
142
+ .mypy_cache/
143
+ .dmypy.json
144
+ dmypy.json
145
+
146
+ # Pyre type checker
147
+ .pyre/
148
+
149
+ # pytype static type analyzer
150
+ .pytype/
151
+
152
+ # Cython debug symbols
153
+ cython_debug/
154
+
155
+ # PyCharm
156
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157
+ # be added to the global gitignore or merged into this project gitignore. For a PyCharm
158
+ # project, it is recommended to use the following settings for the Project Structure:
159
+ # File | Settings | Project Structure | Add Content Root | Exclude files | *.pyc
160
+ .idea/
161
+
162
+ # VS Code
163
+ .vscode/
164
+ *.code-workspace
165
+
166
+ # Local History for Visual Studio Code
167
+ .history/
168
+
169
+ # Built Visual Studio Code Extensions
170
+ *.vsix
171
+
172
+ # macOS
173
+ .DS_Store
174
+ .AppleDouble
175
+ .LSOverride
176
+
177
+ # Icon must end with two \r
178
+ Icon
179
+
180
+ # Thumbnails
181
+ ._*
182
+
183
+ # Files that might appear in the root of a volume
184
+ .DocumentRevisions-V100
185
+ .fseventsd
186
+ .Spotlight-V100
187
+ .TemporaryItems
188
+ .Trashes
189
+ .VolumeIcon.icns
190
+ .com.apple.timemachine.donotpresent
191
+
192
+ # Directories potentially created on remote AFP share
193
+ .AppleDB
194
+ .AppleDesktop
195
+ Network Trash Folder
196
+ Temporary Items
197
+ .apdisk
198
+
199
+ # Windows
200
+ Thumbs.db
201
+ Thumbs.db:encryptable
202
+ ehthumbs.db
203
+ ehthumbs_vista.db
204
+
205
+ # Dump file
206
+ *.stackdump
207
+
208
+ # Folder config file
209
+ [Dd]esktop.ini
210
+
211
+ # Recycle Bin used on file shares
212
+ $RECYCLE.BIN/
213
+
214
+ # Windows Installer files
215
+ *.cab
216
+ *.msi
217
+ *.msix
218
+ *.msm
219
+ *.msp
220
+
221
+ # Windows shortcuts
222
+ *.lnk
223
+
224
+ # Linux
225
+ *~
226
+
227
+ # temporary files which can be created if a process still has a handle open of a deleted file
228
+ .fuse_hidden*
229
+
230
+ # KDE directory preferences
231
+ .directory
232
+
233
+ # Linux trash folder which might appear on any partition or disk
234
+ .Trash-*
235
+
236
+ # .nfs files are created when an open file is removed but is still being accessed
237
+ .nfs*
238
+
239
+ # Project specific files
240
+ error.log
241
+ *.log
242
+ input_handler.py
243
+ prompt_config.json
244
+ user_input_prompt.md
245
+ ISSUE_TRACKING.md
246
+ OPTIMIZATION_REPORT.md
247
+
248
+
249
+ # Development and temporary files
250
+ prompt_history/
251
+ temp/
252
+ tmp/
253
+ .temp/
254
+
255
+ # Tree-sitter specific
256
+ tree-sitter-*/
257
+ *.so
258
+ *.dylib
259
+ *.dll
260
+
261
+ # UV lock file (keep uv.lock for reproducible builds)
262
+ # uv.lock
263
+
264
+ # Benchmark and performance files
265
+ benchmark_results/
266
+ performance_data/
267
+
268
+ # Local configuration files
269
+ local_config.py
270
+ local_settings.py
271
+ .local/
272
+
273
+ # Editor backup files
274
+ *~
275
+ *.swp
276
+ *.swo
277
+ *#
278
+ .#*
279
+
280
+ # Compiled tree-sitter parsers
281
+ parsers/