tree-sitter-analyzer 1.9.17.1__py3-none-any.whl
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.
- tree_sitter_analyzer/__init__.py +132 -0
- tree_sitter_analyzer/__main__.py +11 -0
- tree_sitter_analyzer/api.py +853 -0
- tree_sitter_analyzer/cli/__init__.py +39 -0
- tree_sitter_analyzer/cli/__main__.py +12 -0
- tree_sitter_analyzer/cli/argument_validator.py +89 -0
- tree_sitter_analyzer/cli/commands/__init__.py +26 -0
- tree_sitter_analyzer/cli/commands/advanced_command.py +226 -0
- tree_sitter_analyzer/cli/commands/base_command.py +181 -0
- tree_sitter_analyzer/cli/commands/default_command.py +18 -0
- tree_sitter_analyzer/cli/commands/find_and_grep_cli.py +188 -0
- tree_sitter_analyzer/cli/commands/list_files_cli.py +133 -0
- tree_sitter_analyzer/cli/commands/partial_read_command.py +139 -0
- tree_sitter_analyzer/cli/commands/query_command.py +109 -0
- tree_sitter_analyzer/cli/commands/search_content_cli.py +161 -0
- tree_sitter_analyzer/cli/commands/structure_command.py +156 -0
- tree_sitter_analyzer/cli/commands/summary_command.py +116 -0
- tree_sitter_analyzer/cli/commands/table_command.py +414 -0
- tree_sitter_analyzer/cli/info_commands.py +124 -0
- tree_sitter_analyzer/cli_main.py +472 -0
- tree_sitter_analyzer/constants.py +85 -0
- tree_sitter_analyzer/core/__init__.py +15 -0
- tree_sitter_analyzer/core/analysis_engine.py +580 -0
- tree_sitter_analyzer/core/cache_service.py +333 -0
- tree_sitter_analyzer/core/engine.py +585 -0
- tree_sitter_analyzer/core/parser.py +293 -0
- tree_sitter_analyzer/core/query.py +605 -0
- tree_sitter_analyzer/core/query_filter.py +200 -0
- tree_sitter_analyzer/core/query_service.py +340 -0
- tree_sitter_analyzer/encoding_utils.py +530 -0
- tree_sitter_analyzer/exceptions.py +747 -0
- tree_sitter_analyzer/file_handler.py +246 -0
- tree_sitter_analyzer/formatters/__init__.py +1 -0
- tree_sitter_analyzer/formatters/base_formatter.py +201 -0
- tree_sitter_analyzer/formatters/csharp_formatter.py +367 -0
- tree_sitter_analyzer/formatters/formatter_config.py +197 -0
- tree_sitter_analyzer/formatters/formatter_factory.py +84 -0
- tree_sitter_analyzer/formatters/formatter_registry.py +377 -0
- tree_sitter_analyzer/formatters/formatter_selector.py +96 -0
- tree_sitter_analyzer/formatters/go_formatter.py +368 -0
- tree_sitter_analyzer/formatters/html_formatter.py +498 -0
- tree_sitter_analyzer/formatters/java_formatter.py +423 -0
- tree_sitter_analyzer/formatters/javascript_formatter.py +611 -0
- tree_sitter_analyzer/formatters/kotlin_formatter.py +268 -0
- tree_sitter_analyzer/formatters/language_formatter_factory.py +123 -0
- tree_sitter_analyzer/formatters/legacy_formatter_adapters.py +228 -0
- tree_sitter_analyzer/formatters/markdown_formatter.py +725 -0
- tree_sitter_analyzer/formatters/php_formatter.py +301 -0
- tree_sitter_analyzer/formatters/python_formatter.py +830 -0
- tree_sitter_analyzer/formatters/ruby_formatter.py +278 -0
- tree_sitter_analyzer/formatters/rust_formatter.py +233 -0
- tree_sitter_analyzer/formatters/sql_formatter_wrapper.py +689 -0
- tree_sitter_analyzer/formatters/sql_formatters.py +536 -0
- tree_sitter_analyzer/formatters/typescript_formatter.py +543 -0
- tree_sitter_analyzer/formatters/yaml_formatter.py +462 -0
- tree_sitter_analyzer/interfaces/__init__.py +9 -0
- tree_sitter_analyzer/interfaces/cli.py +535 -0
- tree_sitter_analyzer/interfaces/cli_adapter.py +359 -0
- tree_sitter_analyzer/interfaces/mcp_adapter.py +224 -0
- tree_sitter_analyzer/interfaces/mcp_server.py +428 -0
- tree_sitter_analyzer/language_detector.py +553 -0
- tree_sitter_analyzer/language_loader.py +271 -0
- tree_sitter_analyzer/languages/__init__.py +10 -0
- tree_sitter_analyzer/languages/csharp_plugin.py +1076 -0
- tree_sitter_analyzer/languages/css_plugin.py +449 -0
- tree_sitter_analyzer/languages/go_plugin.py +836 -0
- tree_sitter_analyzer/languages/html_plugin.py +496 -0
- tree_sitter_analyzer/languages/java_plugin.py +1299 -0
- tree_sitter_analyzer/languages/javascript_plugin.py +1622 -0
- tree_sitter_analyzer/languages/kotlin_plugin.py +656 -0
- tree_sitter_analyzer/languages/markdown_plugin.py +1928 -0
- tree_sitter_analyzer/languages/php_plugin.py +862 -0
- tree_sitter_analyzer/languages/python_plugin.py +1636 -0
- tree_sitter_analyzer/languages/ruby_plugin.py +757 -0
- tree_sitter_analyzer/languages/rust_plugin.py +673 -0
- tree_sitter_analyzer/languages/sql_plugin.py +2444 -0
- tree_sitter_analyzer/languages/typescript_plugin.py +1892 -0
- tree_sitter_analyzer/languages/yaml_plugin.py +695 -0
- tree_sitter_analyzer/legacy_table_formatter.py +860 -0
- tree_sitter_analyzer/mcp/__init__.py +34 -0
- tree_sitter_analyzer/mcp/resources/__init__.py +43 -0
- tree_sitter_analyzer/mcp/resources/code_file_resource.py +208 -0
- tree_sitter_analyzer/mcp/resources/project_stats_resource.py +586 -0
- tree_sitter_analyzer/mcp/server.py +869 -0
- tree_sitter_analyzer/mcp/tools/__init__.py +28 -0
- tree_sitter_analyzer/mcp/tools/analyze_scale_tool.py +779 -0
- tree_sitter_analyzer/mcp/tools/analyze_scale_tool_cli_compatible.py +291 -0
- tree_sitter_analyzer/mcp/tools/base_tool.py +139 -0
- tree_sitter_analyzer/mcp/tools/fd_rg_utils.py +816 -0
- tree_sitter_analyzer/mcp/tools/find_and_grep_tool.py +686 -0
- tree_sitter_analyzer/mcp/tools/list_files_tool.py +413 -0
- tree_sitter_analyzer/mcp/tools/output_format_validator.py +148 -0
- tree_sitter_analyzer/mcp/tools/query_tool.py +443 -0
- tree_sitter_analyzer/mcp/tools/read_partial_tool.py +464 -0
- tree_sitter_analyzer/mcp/tools/search_content_tool.py +836 -0
- tree_sitter_analyzer/mcp/tools/table_format_tool.py +572 -0
- tree_sitter_analyzer/mcp/tools/universal_analyze_tool.py +653 -0
- tree_sitter_analyzer/mcp/utils/__init__.py +113 -0
- tree_sitter_analyzer/mcp/utils/error_handler.py +569 -0
- tree_sitter_analyzer/mcp/utils/file_output_factory.py +217 -0
- tree_sitter_analyzer/mcp/utils/file_output_manager.py +322 -0
- tree_sitter_analyzer/mcp/utils/gitignore_detector.py +358 -0
- tree_sitter_analyzer/mcp/utils/path_resolver.py +414 -0
- tree_sitter_analyzer/mcp/utils/search_cache.py +343 -0
- tree_sitter_analyzer/models.py +840 -0
- tree_sitter_analyzer/mypy_current_errors.txt +2 -0
- tree_sitter_analyzer/output_manager.py +255 -0
- tree_sitter_analyzer/platform_compat/__init__.py +3 -0
- tree_sitter_analyzer/platform_compat/adapter.py +324 -0
- tree_sitter_analyzer/platform_compat/compare.py +224 -0
- tree_sitter_analyzer/platform_compat/detector.py +67 -0
- tree_sitter_analyzer/platform_compat/fixtures.py +228 -0
- tree_sitter_analyzer/platform_compat/profiles.py +217 -0
- tree_sitter_analyzer/platform_compat/record.py +55 -0
- tree_sitter_analyzer/platform_compat/recorder.py +155 -0
- tree_sitter_analyzer/platform_compat/report.py +92 -0
- tree_sitter_analyzer/plugins/__init__.py +280 -0
- tree_sitter_analyzer/plugins/base.py +647 -0
- tree_sitter_analyzer/plugins/manager.py +384 -0
- tree_sitter_analyzer/project_detector.py +328 -0
- tree_sitter_analyzer/queries/__init__.py +27 -0
- tree_sitter_analyzer/queries/csharp.py +216 -0
- tree_sitter_analyzer/queries/css.py +615 -0
- tree_sitter_analyzer/queries/go.py +275 -0
- tree_sitter_analyzer/queries/html.py +543 -0
- tree_sitter_analyzer/queries/java.py +402 -0
- tree_sitter_analyzer/queries/javascript.py +724 -0
- tree_sitter_analyzer/queries/kotlin.py +192 -0
- tree_sitter_analyzer/queries/markdown.py +258 -0
- tree_sitter_analyzer/queries/php.py +95 -0
- tree_sitter_analyzer/queries/python.py +859 -0
- tree_sitter_analyzer/queries/ruby.py +92 -0
- tree_sitter_analyzer/queries/rust.py +223 -0
- tree_sitter_analyzer/queries/sql.py +555 -0
- tree_sitter_analyzer/queries/typescript.py +871 -0
- tree_sitter_analyzer/queries/yaml.py +236 -0
- tree_sitter_analyzer/query_loader.py +272 -0
- tree_sitter_analyzer/security/__init__.py +22 -0
- tree_sitter_analyzer/security/boundary_manager.py +277 -0
- tree_sitter_analyzer/security/regex_checker.py +297 -0
- tree_sitter_analyzer/security/validator.py +599 -0
- tree_sitter_analyzer/table_formatter.py +782 -0
- tree_sitter_analyzer/utils/__init__.py +53 -0
- tree_sitter_analyzer/utils/logging.py +433 -0
- tree_sitter_analyzer/utils/tree_sitter_compat.py +289 -0
- tree_sitter_analyzer-1.9.17.1.dist-info/METADATA +485 -0
- tree_sitter_analyzer-1.9.17.1.dist-info/RECORD +149 -0
- tree_sitter_analyzer-1.9.17.1.dist-info/WHEEL +4 -0
- tree_sitter_analyzer-1.9.17.1.dist-info/entry_points.txt +25 -0
|
@@ -0,0 +1,485 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tree-sitter-analyzer
|
|
3
|
+
Version: 1.9.17.1
|
|
4
|
+
Summary: AI-era enterprise-grade code analysis tool with comprehensive HTML/CSS support, dynamic plugin architecture, and MCP integration
|
|
5
|
+
Project-URL: Homepage, https://github.com/aimasteracc/tree-sitter-analyzer
|
|
6
|
+
Project-URL: Documentation, https://github.com/aimasteracc/tree-sitter-analyzer#readme
|
|
7
|
+
Project-URL: Repository, https://github.com/aimasteracc/tree-sitter-analyzer.git
|
|
8
|
+
Project-URL: Issues, https://github.com/aimasteracc/tree-sitter-analyzer/issues
|
|
9
|
+
Project-URL: Changelog, https://github.com/aimasteracc/tree-sitter-analyzer/blob/main/CHANGELOG.md
|
|
10
|
+
Project-URL: Bug Reports, https://github.com/aimasteracc/tree-sitter-analyzer/issues
|
|
11
|
+
Project-URL: Source Code, https://github.com/aimasteracc/tree-sitter-analyzer
|
|
12
|
+
Author-email: "aisheng.yu" <aimasteracc@gmail.com>
|
|
13
|
+
Maintainer-email: "aisheng.yu" <aimasteracc@gmail.com>
|
|
14
|
+
License: MIT
|
|
15
|
+
Keywords: ai-tools,ast,code-analysis,css,html,mcp,mcp-server,model-context-protocol,multi-language,parsing,static-analysis,tree-sitter,web-development
|
|
16
|
+
Classifier: Development Status :: 4 - Beta
|
|
17
|
+
Classifier: Framework :: AsyncIO
|
|
18
|
+
Classifier: Intended Audience :: Developers
|
|
19
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
20
|
+
Classifier: Operating System :: OS Independent
|
|
21
|
+
Classifier: Programming Language :: Python :: 3
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Topic :: Communications
|
|
27
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
28
|
+
Classifier: Topic :: Software Development :: Code Generators
|
|
29
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
30
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
31
|
+
Classifier: Topic :: Text Processing :: Linguistic
|
|
32
|
+
Classifier: Typing :: Typed
|
|
33
|
+
Requires-Python: >=3.10
|
|
34
|
+
Requires-Dist: cachetools>=5.0.0
|
|
35
|
+
Requires-Dist: chardet>=5.0.0
|
|
36
|
+
Requires-Dist: deepdiff>=6.7.1
|
|
37
|
+
Requires-Dist: mcp>=1.12.3
|
|
38
|
+
Requires-Dist: psutil>=5.9.8
|
|
39
|
+
Requires-Dist: tree-sitter-c-sharp>=0.23.1
|
|
40
|
+
Requires-Dist: tree-sitter-cpp<0.25.0,>=0.23.4
|
|
41
|
+
Requires-Dist: tree-sitter-css<0.25.0,>=0.23.0
|
|
42
|
+
Requires-Dist: tree-sitter-html<0.25.0,>=0.23.0
|
|
43
|
+
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5
|
|
44
|
+
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1
|
|
45
|
+
Requires-Dist: tree-sitter-markdown>=0.3.1
|
|
46
|
+
Requires-Dist: tree-sitter-php>=0.24.1
|
|
47
|
+
Requires-Dist: tree-sitter-python<0.25.0,>=0.23.6
|
|
48
|
+
Requires-Dist: tree-sitter-ruby>=0.23.1
|
|
49
|
+
Requires-Dist: tree-sitter-sql>=0.3.11
|
|
50
|
+
Requires-Dist: tree-sitter-typescript>=0.23.2
|
|
51
|
+
Requires-Dist: tree-sitter-yaml>=0.7.0
|
|
52
|
+
Requires-Dist: tree-sitter>=0.25.0
|
|
53
|
+
Provides-Extra: all
|
|
54
|
+
Requires-Dist: anyio>=4.0.0; extra == 'all'
|
|
55
|
+
Requires-Dist: black>=24.0.0; extra == 'all'
|
|
56
|
+
Requires-Dist: httpx<1.0.0,>=0.27.0; extra == 'all'
|
|
57
|
+
Requires-Dist: isort>=5.13.0; extra == 'all'
|
|
58
|
+
Requires-Dist: mcp>=1.12.2; extra == 'all'
|
|
59
|
+
Requires-Dist: memory-profiler>=0.61.0; extra == 'all'
|
|
60
|
+
Requires-Dist: mypy>=1.17.0; extra == 'all'
|
|
61
|
+
Requires-Dist: pre-commit>=3.0.0; extra == 'all'
|
|
62
|
+
Requires-Dist: psutil<6,>=5.9.6; extra == 'all'
|
|
63
|
+
Requires-Dist: pydantic-settings>=2.2.1; extra == 'all'
|
|
64
|
+
Requires-Dist: pydantic>=2.5.0; extra == 'all'
|
|
65
|
+
Requires-Dist: pytest-asyncio>=1.1.0; extra == 'all'
|
|
66
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == 'all'
|
|
67
|
+
Requires-Dist: pytest-mock>=3.14.1; extra == 'all'
|
|
68
|
+
Requires-Dist: pytest>=8.4.1; extra == 'all'
|
|
69
|
+
Requires-Dist: ruff>=0.5.0; extra == 'all'
|
|
70
|
+
Requires-Dist: tree-sitter-c<0.25.0,>=0.20.0; extra == 'all'
|
|
71
|
+
Requires-Dist: tree-sitter-cpp<0.25.0,>=0.23.4; extra == 'all'
|
|
72
|
+
Requires-Dist: tree-sitter-css<0.25.0,>=0.23.0; extra == 'all'
|
|
73
|
+
Requires-Dist: tree-sitter-go<0.25.0,>=0.20.0; extra == 'all'
|
|
74
|
+
Requires-Dist: tree-sitter-html<0.25.0,>=0.23.0; extra == 'all'
|
|
75
|
+
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5; extra == 'all'
|
|
76
|
+
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1; extra == 'all'
|
|
77
|
+
Requires-Dist: tree-sitter-markdown>=0.3.1; extra == 'all'
|
|
78
|
+
Requires-Dist: tree-sitter-python<0.25.0,>=0.23.0; extra == 'all'
|
|
79
|
+
Requires-Dist: tree-sitter-rust<0.25.0,>=0.20.0; extra == 'all'
|
|
80
|
+
Requires-Dist: tree-sitter-sql<0.4.0,>=0.3.11; extra == 'all'
|
|
81
|
+
Requires-Dist: tree-sitter-typescript<0.25.0,>=0.20.0; extra == 'all'
|
|
82
|
+
Requires-Dist: types-psutil>=5.9.0; extra == 'all'
|
|
83
|
+
Provides-Extra: all-languages
|
|
84
|
+
Requires-Dist: tree-sitter-c-sharp>=0.23.1; extra == 'all-languages'
|
|
85
|
+
Requires-Dist: tree-sitter-c<0.25.0,>=0.20.0; extra == 'all-languages'
|
|
86
|
+
Requires-Dist: tree-sitter-cpp<0.25.0,>=0.23.4; extra == 'all-languages'
|
|
87
|
+
Requires-Dist: tree-sitter-css<0.25.0,>=0.23.0; extra == 'all-languages'
|
|
88
|
+
Requires-Dist: tree-sitter-go<0.25.0,>=0.20.0; extra == 'all-languages'
|
|
89
|
+
Requires-Dist: tree-sitter-html<0.25.0,>=0.23.0; extra == 'all-languages'
|
|
90
|
+
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5; extra == 'all-languages'
|
|
91
|
+
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1; extra == 'all-languages'
|
|
92
|
+
Requires-Dist: tree-sitter-kotlin>=0.3.0; extra == 'all-languages'
|
|
93
|
+
Requires-Dist: tree-sitter-markdown>=0.3.1; extra == 'all-languages'
|
|
94
|
+
Requires-Dist: tree-sitter-php<0.25.0,>=0.23.0; extra == 'all-languages'
|
|
95
|
+
Requires-Dist: tree-sitter-python<0.25.0,>=0.23.0; extra == 'all-languages'
|
|
96
|
+
Requires-Dist: tree-sitter-ruby<0.25.0,>=0.23.0; extra == 'all-languages'
|
|
97
|
+
Requires-Dist: tree-sitter-rust<0.25.0,>=0.20.0; extra == 'all-languages'
|
|
98
|
+
Requires-Dist: tree-sitter-sql<0.4.0,>=0.3.11; extra == 'all-languages'
|
|
99
|
+
Requires-Dist: tree-sitter-typescript<0.25.0,>=0.20.0; extra == 'all-languages'
|
|
100
|
+
Requires-Dist: tree-sitter-yaml>=0.7.0; extra == 'all-languages'
|
|
101
|
+
Provides-Extra: c
|
|
102
|
+
Requires-Dist: tree-sitter-c<0.25.0,>=0.20.0; extra == 'c'
|
|
103
|
+
Provides-Extra: cpp
|
|
104
|
+
Requires-Dist: tree-sitter-cpp<0.25.0,>=0.23.4; extra == 'cpp'
|
|
105
|
+
Provides-Extra: csharp
|
|
106
|
+
Requires-Dist: tree-sitter-c-sharp>=0.23.1; extra == 'csharp'
|
|
107
|
+
Provides-Extra: css
|
|
108
|
+
Requires-Dist: tree-sitter-css<0.25.0,>=0.23.0; extra == 'css'
|
|
109
|
+
Provides-Extra: dev
|
|
110
|
+
Requires-Dist: black>=24.0.0; extra == 'dev'
|
|
111
|
+
Requires-Dist: hypothesis>=6.0.0; extra == 'dev'
|
|
112
|
+
Requires-Dist: isort>=5.13.0; extra == 'dev'
|
|
113
|
+
Requires-Dist: memory-profiler>=0.61.0; extra == 'dev'
|
|
114
|
+
Requires-Dist: mypy>=1.17.0; extra == 'dev'
|
|
115
|
+
Requires-Dist: pre-commit>=3.0.0; extra == 'dev'
|
|
116
|
+
Requires-Dist: psutil<6,>=5.9.6; extra == 'dev'
|
|
117
|
+
Requires-Dist: pytest-asyncio>=1.1.0; extra == 'dev'
|
|
118
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
|
|
119
|
+
Requires-Dist: pytest-mock>=3.14.1; extra == 'dev'
|
|
120
|
+
Requires-Dist: pytest>=8.4.1; extra == 'dev'
|
|
121
|
+
Requires-Dist: ruff>=0.5.0; extra == 'dev'
|
|
122
|
+
Requires-Dist: types-psutil>=5.9.0; extra == 'dev'
|
|
123
|
+
Provides-Extra: full
|
|
124
|
+
Requires-Dist: anyio>=4.0.0; extra == 'full'
|
|
125
|
+
Requires-Dist: black>=24.0.0; extra == 'full'
|
|
126
|
+
Requires-Dist: httpx<1.0.0,>=0.27.0; extra == 'full'
|
|
127
|
+
Requires-Dist: isort>=5.13.0; extra == 'full'
|
|
128
|
+
Requires-Dist: mcp>=1.12.2; extra == 'full'
|
|
129
|
+
Requires-Dist: memory-profiler>=0.61.0; extra == 'full'
|
|
130
|
+
Requires-Dist: mypy>=1.17.0; extra == 'full'
|
|
131
|
+
Requires-Dist: pre-commit>=3.0.0; extra == 'full'
|
|
132
|
+
Requires-Dist: psutil<6,>=5.9.6; extra == 'full'
|
|
133
|
+
Requires-Dist: pydantic-settings>=2.2.1; extra == 'full'
|
|
134
|
+
Requires-Dist: pydantic>=2.5.0; extra == 'full'
|
|
135
|
+
Requires-Dist: pytest-asyncio>=1.1.0; extra == 'full'
|
|
136
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == 'full'
|
|
137
|
+
Requires-Dist: pytest-mock>=3.14.1; extra == 'full'
|
|
138
|
+
Requires-Dist: pytest>=8.4.1; extra == 'full'
|
|
139
|
+
Requires-Dist: ruff>=0.5.0; extra == 'full'
|
|
140
|
+
Requires-Dist: tree-sitter-c<0.25.0,>=0.20.0; extra == 'full'
|
|
141
|
+
Requires-Dist: tree-sitter-cpp<0.25.0,>=0.23.4; extra == 'full'
|
|
142
|
+
Requires-Dist: tree-sitter-go<0.25.0,>=0.20.0; extra == 'full'
|
|
143
|
+
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5; extra == 'full'
|
|
144
|
+
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1; extra == 'full'
|
|
145
|
+
Requires-Dist: tree-sitter-markdown>=0.3.1; extra == 'full'
|
|
146
|
+
Requires-Dist: tree-sitter-python<0.25.0,>=0.23.0; extra == 'full'
|
|
147
|
+
Requires-Dist: tree-sitter-rust<0.25.0,>=0.20.0; extra == 'full'
|
|
148
|
+
Requires-Dist: tree-sitter-typescript<0.25.0,>=0.20.0; extra == 'full'
|
|
149
|
+
Requires-Dist: types-psutil>=5.9.0; extra == 'full'
|
|
150
|
+
Provides-Extra: go
|
|
151
|
+
Requires-Dist: tree-sitter-go<0.25.0,>=0.20.0; extra == 'go'
|
|
152
|
+
Provides-Extra: html
|
|
153
|
+
Requires-Dist: tree-sitter-html<0.25.0,>=0.23.0; extra == 'html'
|
|
154
|
+
Provides-Extra: integration
|
|
155
|
+
Requires-Dist: anyio>=4.0.0; extra == 'integration'
|
|
156
|
+
Requires-Dist: mcp>=1.12.2; extra == 'integration'
|
|
157
|
+
Requires-Dist: memory-profiler>=0.61.0; extra == 'integration'
|
|
158
|
+
Requires-Dist: psutil>=5.9.8; extra == 'integration'
|
|
159
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'integration'
|
|
160
|
+
Requires-Dist: pytest-benchmark>=4.0.0; extra == 'integration'
|
|
161
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == 'integration'
|
|
162
|
+
Requires-Dist: pytest-mock>=3.14.1; extra == 'integration'
|
|
163
|
+
Requires-Dist: pytest>=8.4.1; extra == 'integration'
|
|
164
|
+
Requires-Dist: tree-sitter-java>=0.23.5; extra == 'integration'
|
|
165
|
+
Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'integration'
|
|
166
|
+
Requires-Dist: tree-sitter-markdown>=0.3.1; extra == 'integration'
|
|
167
|
+
Requires-Dist: tree-sitter-python>=0.23.0; extra == 'integration'
|
|
168
|
+
Requires-Dist: tree-sitter-typescript>=0.20.0; extra == 'integration'
|
|
169
|
+
Provides-Extra: java
|
|
170
|
+
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5; extra == 'java'
|
|
171
|
+
Provides-Extra: javascript
|
|
172
|
+
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1; extra == 'javascript'
|
|
173
|
+
Provides-Extra: kotlin
|
|
174
|
+
Requires-Dist: tree-sitter-kotlin>=0.3.0; extra == 'kotlin'
|
|
175
|
+
Provides-Extra: markdown
|
|
176
|
+
Requires-Dist: tree-sitter-markdown>=0.3.1; extra == 'markdown'
|
|
177
|
+
Provides-Extra: mcp
|
|
178
|
+
Requires-Dist: anyio>=4.0.0; extra == 'mcp'
|
|
179
|
+
Requires-Dist: httpx<1.0.0,>=0.27.0; extra == 'mcp'
|
|
180
|
+
Requires-Dist: mcp>=1.12.2; extra == 'mcp'
|
|
181
|
+
Requires-Dist: pydantic-settings>=2.2.1; extra == 'mcp'
|
|
182
|
+
Requires-Dist: pydantic>=2.5.0; extra == 'mcp'
|
|
183
|
+
Provides-Extra: php
|
|
184
|
+
Requires-Dist: tree-sitter-php<0.25.0,>=0.23.0; extra == 'php'
|
|
185
|
+
Provides-Extra: popular
|
|
186
|
+
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5; extra == 'popular'
|
|
187
|
+
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1; extra == 'popular'
|
|
188
|
+
Requires-Dist: tree-sitter-python<0.25.0,>=0.23.0; extra == 'popular'
|
|
189
|
+
Requires-Dist: tree-sitter-typescript<0.25.0,>=0.20.0; extra == 'popular'
|
|
190
|
+
Provides-Extra: python
|
|
191
|
+
Requires-Dist: tree-sitter-python<0.25.0,>=0.23.0; extra == 'python'
|
|
192
|
+
Provides-Extra: ruby
|
|
193
|
+
Requires-Dist: tree-sitter-ruby<0.25.0,>=0.23.0; extra == 'ruby'
|
|
194
|
+
Provides-Extra: rust
|
|
195
|
+
Requires-Dist: tree-sitter-rust<0.25.0,>=0.20.0; extra == 'rust'
|
|
196
|
+
Provides-Extra: sql
|
|
197
|
+
Requires-Dist: tree-sitter-sql<0.4.0,>=0.3.11; extra == 'sql'
|
|
198
|
+
Provides-Extra: systems
|
|
199
|
+
Requires-Dist: tree-sitter-c<0.25.0,>=0.20.0; extra == 'systems'
|
|
200
|
+
Requires-Dist: tree-sitter-cpp<0.25.0,>=0.23.4; extra == 'systems'
|
|
201
|
+
Requires-Dist: tree-sitter-go<0.25.0,>=0.20.0; extra == 'systems'
|
|
202
|
+
Requires-Dist: tree-sitter-rust<0.25.0,>=0.20.0; extra == 'systems'
|
|
203
|
+
Provides-Extra: test
|
|
204
|
+
Requires-Dist: pytest-asyncio>=1.1.0; extra == 'test'
|
|
205
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == 'test'
|
|
206
|
+
Requires-Dist: pytest-mock>=3.14.1; extra == 'test'
|
|
207
|
+
Requires-Dist: pytest>=8.4.1; extra == 'test'
|
|
208
|
+
Requires-Dist: tree-sitter-c-sharp>=0.23.1; extra == 'test'
|
|
209
|
+
Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'test'
|
|
210
|
+
Requires-Dist: tree-sitter-java>=0.23.5; extra == 'test'
|
|
211
|
+
Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'test'
|
|
212
|
+
Requires-Dist: tree-sitter-php<0.25.0,>=0.23.0; extra == 'test'
|
|
213
|
+
Requires-Dist: tree-sitter-python>=0.23.0; extra == 'test'
|
|
214
|
+
Requires-Dist: tree-sitter-ruby<0.25.0,>=0.23.0; extra == 'test'
|
|
215
|
+
Requires-Dist: tree-sitter-sql<0.4.0,>=0.3.11; extra == 'test'
|
|
216
|
+
Provides-Extra: typescript
|
|
217
|
+
Requires-Dist: tree-sitter-typescript<0.25.0,>=0.20.0; extra == 'typescript'
|
|
218
|
+
Provides-Extra: web
|
|
219
|
+
Requires-Dist: tree-sitter-css<0.25.0,>=0.23.0; extra == 'web'
|
|
220
|
+
Requires-Dist: tree-sitter-html<0.25.0,>=0.23.0; extra == 'web'
|
|
221
|
+
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1; extra == 'web'
|
|
222
|
+
Requires-Dist: tree-sitter-php<0.25.0,>=0.23.0; extra == 'web'
|
|
223
|
+
Requires-Dist: tree-sitter-ruby<0.25.0,>=0.23.0; extra == 'web'
|
|
224
|
+
Requires-Dist: tree-sitter-typescript<0.25.0,>=0.20.0; extra == 'web'
|
|
225
|
+
Provides-Extra: yaml
|
|
226
|
+
Requires-Dist: tree-sitter-yaml>=0.7.0; extra == 'yaml'
|
|
227
|
+
Description-Content-Type: text/markdown
|
|
228
|
+
|
|
229
|
+
# 🌳 Tree-sitter Analyzer
|
|
230
|
+
|
|
231
|
+
**English** | **[日本語](README_ja.md)** | **[简体中文](README_zh.md)**
|
|
232
|
+
|
|
233
|
+
[](https://python.org)
|
|
234
|
+
[](LICENSE)
|
|
235
|
+
[](#-quality--testing)
|
|
236
|
+
[](https://codecov.io/gh/aimasteracc/tree-sitter-analyzer)
|
|
237
|
+
[](https://pypi.org/project/tree-sitter-analyzer/)
|
|
238
|
+
[](https://github.com/aimasteracc/tree-sitter-analyzer/releases)
|
|
239
|
+
[](https://github.com/aimasteracc/tree-sitter-analyzer)
|
|
240
|
+
|
|
241
|
+
> 🚀 **Enterprise-Grade Code Analysis Tool for the AI Era** - Deep AI Integration · Powerful Search · 15 Languages · Intelligent Analysis
|
|
242
|
+
|
|
243
|
+
---
|
|
244
|
+
|
|
245
|
+
## ✨ What's New in v1.9.18
|
|
246
|
+
|
|
247
|
+
- **Vertex AI Compatibility**: Fixed MCP tool JSON Schema compatibility with Vertex AI API
|
|
248
|
+
- **New Languages**: Go, Rust, Kotlin, YAML support added with full feature extraction
|
|
249
|
+
- **4,864 tests** with 100% pass rate
|
|
250
|
+
|
|
251
|
+
📖 **[Full Changelog](CHANGELOG.md)** for complete version history.
|
|
252
|
+
|
|
253
|
+
---
|
|
254
|
+
|
|
255
|
+
## 🎬 See It In Action
|
|
256
|
+
|
|
257
|
+
<!-- GIF placeholder - see docs/assets/demo-placeholder.md for creation instructions -->
|
|
258
|
+
*Demo GIF coming soon - showcasing AI integration with SMART workflow*
|
|
259
|
+
|
|
260
|
+
---
|
|
261
|
+
|
|
262
|
+
## 🚀 5-Minute Quick Start
|
|
263
|
+
|
|
264
|
+
### Prerequisites
|
|
265
|
+
|
|
266
|
+
```bash
|
|
267
|
+
# Install uv (required)
|
|
268
|
+
# macOS/Linux
|
|
269
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
270
|
+
# Windows PowerShell
|
|
271
|
+
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
|
|
272
|
+
|
|
273
|
+
# Install fd + ripgrep (required for search features)
|
|
274
|
+
brew install fd ripgrep # macOS
|
|
275
|
+
winget install sharkdp.fd BurntSushi.ripgrep.MSVC # Windows
|
|
276
|
+
```
|
|
277
|
+
|
|
278
|
+
📖 **[Detailed Installation Guide](docs/installation.md)** for all platforms.
|
|
279
|
+
|
|
280
|
+
### Verify Installation
|
|
281
|
+
|
|
282
|
+
```bash
|
|
283
|
+
uv run tree-sitter-analyzer --show-supported-languages
|
|
284
|
+
```
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
|
|
288
|
+
## 🤖 AI Integration
|
|
289
|
+
|
|
290
|
+
Configure your AI assistant to use Tree-sitter Analyzer via MCP protocol.
|
|
291
|
+
|
|
292
|
+
### Claude Desktop / Cursor / Roo Code
|
|
293
|
+
|
|
294
|
+
Add to your MCP configuration:
|
|
295
|
+
|
|
296
|
+
```json
|
|
297
|
+
{
|
|
298
|
+
"mcpServers": {
|
|
299
|
+
"tree-sitter-analyzer": {
|
|
300
|
+
"command": "uvx",
|
|
301
|
+
"args": [
|
|
302
|
+
"--from", "tree-sitter-analyzer[mcp]",
|
|
303
|
+
"tree-sitter-analyzer-mcp"
|
|
304
|
+
],
|
|
305
|
+
"env": {
|
|
306
|
+
"TREE_SITTER_PROJECT_ROOT": "/path/to/your/project",
|
|
307
|
+
"TREE_SITTER_OUTPUT_PATH": "/path/to/output/directory"
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
```
|
|
313
|
+
|
|
314
|
+
**Configuration file locations:**
|
|
315
|
+
- **Claude Desktop**: `%APPDATA%\Claude\claude_desktop_config.json` (Windows) / `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS)
|
|
316
|
+
- **Cursor**: Built-in MCP settings
|
|
317
|
+
- **Roo Code**: MCP configuration
|
|
318
|
+
|
|
319
|
+
After restart, tell the AI: `Please set the project root directory to: /path/to/your/project`
|
|
320
|
+
|
|
321
|
+
📖 **[MCP Tools Reference](docs/api/mcp_tools_specification.md)** for complete API documentation.
|
|
322
|
+
|
|
323
|
+
---
|
|
324
|
+
|
|
325
|
+
## 💻 Common CLI Commands
|
|
326
|
+
|
|
327
|
+
### Installation
|
|
328
|
+
|
|
329
|
+
```bash
|
|
330
|
+
uv add "tree-sitter-analyzer[all,mcp]" # Full installation
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
### Top 5 Commands
|
|
334
|
+
|
|
335
|
+
```bash
|
|
336
|
+
# 1. Analyze file structure
|
|
337
|
+
uv run tree-sitter-analyzer examples/BigService.java --table full
|
|
338
|
+
|
|
339
|
+
# 2. Quick summary
|
|
340
|
+
uv run tree-sitter-analyzer examples/BigService.java --summary
|
|
341
|
+
|
|
342
|
+
# 3. Extract code section
|
|
343
|
+
uv run tree-sitter-analyzer examples/BigService.java --partial-read --start-line 93 --end-line 106
|
|
344
|
+
|
|
345
|
+
# 4. Find files and search content
|
|
346
|
+
uv run find-and-grep --roots . --query "class.*Service" --extensions java
|
|
347
|
+
|
|
348
|
+
# 5. Query specific elements
|
|
349
|
+
uv run tree-sitter-analyzer examples/BigService.java --query-key methods --filter "public=true"
|
|
350
|
+
```
|
|
351
|
+
|
|
352
|
+
<details>
|
|
353
|
+
<summary>📋 View Output Example</summary>
|
|
354
|
+
|
|
355
|
+
```
|
|
356
|
+
╭─────────────────────────────────────────────────────────────╮
|
|
357
|
+
│ BigService.java Analysis │
|
|
358
|
+
├─────────────────────────────────────────────────────────────┤
|
|
359
|
+
│ Total Lines: 1419 | Code: 906 | Comments: 246 | Blank: 267 │
|
|
360
|
+
│ Classes: 1 | Methods: 66 | Fields: 9 | Complexity: 5.27 avg │
|
|
361
|
+
╰─────────────────────────────────────────────────────────────╯
|
|
362
|
+
```
|
|
363
|
+
|
|
364
|
+
</details>
|
|
365
|
+
|
|
366
|
+
📖 **[Complete CLI Reference](docs/cli-reference.md)** for all commands and options.
|
|
367
|
+
|
|
368
|
+
---
|
|
369
|
+
|
|
370
|
+
## 🌍 Supported Languages
|
|
371
|
+
|
|
372
|
+
| Language | Support Level | Key Features |
|
|
373
|
+
|----------|---------------|--------------|
|
|
374
|
+
| **Java** | ✅ Complete | Spring, JPA, enterprise features |
|
|
375
|
+
| **Python** | ✅ Complete | Type annotations, decorators |
|
|
376
|
+
| **TypeScript** | ✅ Complete | Interfaces, types, TSX/JSX |
|
|
377
|
+
| **JavaScript** | ✅ Complete | ES6+, React/Vue/Angular |
|
|
378
|
+
| **C#** | ✅ Complete | Records, async/await, attributes |
|
|
379
|
+
| **SQL** | ✅ Enhanced | Tables, views, procedures, triggers |
|
|
380
|
+
| **HTML** | ✅ Complete | DOM structure, element classification |
|
|
381
|
+
| **CSS** | ✅ Complete | Selectors, properties, categorization |
|
|
382
|
+
| **Go** | ✅ Complete | Structs, interfaces, goroutines |
|
|
383
|
+
| **Rust** | ✅ Complete | Traits, impl blocks, macros |
|
|
384
|
+
| **Kotlin** | ✅ Complete | Data classes, coroutines |
|
|
385
|
+
| **PHP** | ✅ Complete | PHP 8+, attributes, traits |
|
|
386
|
+
| **Ruby** | ✅ Complete | Rails patterns, metaprogramming |
|
|
387
|
+
| **YAML** | ✅ Complete | Anchors, aliases, multi-document |
|
|
388
|
+
| **Markdown** | ✅ Complete | Headers, code blocks, tables |
|
|
389
|
+
|
|
390
|
+
📖 **[Features Documentation](docs/features.md)** for language-specific details.
|
|
391
|
+
|
|
392
|
+
---
|
|
393
|
+
|
|
394
|
+
## 📊 Features Overview
|
|
395
|
+
|
|
396
|
+
| Feature | Description | Learn More |
|
|
397
|
+
|---------|-------------|------------|
|
|
398
|
+
| **SMART Workflow** | Set-Map-Analyze-Retrieve-Trace methodology | [Guide](docs/smart-workflow.md) |
|
|
399
|
+
| **MCP Protocol** | Native AI assistant integration | [API Docs](docs/api/mcp_tools_specification.md) |
|
|
400
|
+
| **Token Optimization** | Up to 95% token reduction | [Features](docs/features.md) |
|
|
401
|
+
| **File Search** | fd-based high-performance discovery | [CLI Reference](docs/cli-reference.md) |
|
|
402
|
+
| **Content Search** | ripgrep regex search | [CLI Reference](docs/cli-reference.md) |
|
|
403
|
+
| **Security** | Project boundary protection | [Architecture](docs/architecture.md) |
|
|
404
|
+
|
|
405
|
+
---
|
|
406
|
+
|
|
407
|
+
## 🏆 Quality & Testing
|
|
408
|
+
|
|
409
|
+
| Metric | Value |
|
|
410
|
+
|--------|-------|
|
|
411
|
+
| **Tests** | 4,864 passed ✅ |
|
|
412
|
+
| **Coverage** | [](https://codecov.io/gh/aimasteracc/tree-sitter-analyzer) |
|
|
413
|
+
| **Type Safety** | 100% mypy compliance |
|
|
414
|
+
| **Platforms** | Windows, macOS, Linux |
|
|
415
|
+
|
|
416
|
+
```bash
|
|
417
|
+
# Run tests
|
|
418
|
+
uv run pytest tests/ -v
|
|
419
|
+
|
|
420
|
+
# Generate coverage report
|
|
421
|
+
uv run pytest tests/ --cov=tree_sitter_analyzer --cov-report=html
|
|
422
|
+
```
|
|
423
|
+
|
|
424
|
+
---
|
|
425
|
+
|
|
426
|
+
## 🛠️ Development
|
|
427
|
+
|
|
428
|
+
### Setup
|
|
429
|
+
|
|
430
|
+
```bash
|
|
431
|
+
git clone https://github.com/aimasteracc/tree-sitter-analyzer.git
|
|
432
|
+
cd tree-sitter-analyzer
|
|
433
|
+
uv sync --extra all --extra mcp
|
|
434
|
+
```
|
|
435
|
+
|
|
436
|
+
### Quality Checks
|
|
437
|
+
|
|
438
|
+
```bash
|
|
439
|
+
uv run pytest tests/ -v # Run tests
|
|
440
|
+
uv run python check_quality.py --new-code-only # Quality check
|
|
441
|
+
uv run python llm_code_checker.py --check-all # AI code check
|
|
442
|
+
```
|
|
443
|
+
|
|
444
|
+
📖 **[Architecture Guide](docs/architecture.md)** for system design details.
|
|
445
|
+
|
|
446
|
+
---
|
|
447
|
+
|
|
448
|
+
## 🤝 Contributing & License
|
|
449
|
+
|
|
450
|
+
We welcome contributions! See **[Contributing Guide](docs/CONTRIBUTING.md)** for development guidelines.
|
|
451
|
+
|
|
452
|
+
### ⭐ Support
|
|
453
|
+
|
|
454
|
+
If this project helps you, please give us a ⭐ on GitHub!
|
|
455
|
+
|
|
456
|
+
### 💝 Sponsors
|
|
457
|
+
|
|
458
|
+
**[@o93](https://github.com/o93)** - Lead Sponsor supporting MCP tool enhancement, test infrastructure, and quality improvements.
|
|
459
|
+
|
|
460
|
+
**[💖 Sponsor this project](https://github.com/sponsors/aimasteracc)**
|
|
461
|
+
|
|
462
|
+
### 📄 License
|
|
463
|
+
|
|
464
|
+
MIT License - see [LICENSE](LICENSE) file.
|
|
465
|
+
|
|
466
|
+
---
|
|
467
|
+
|
|
468
|
+
## 📚 Documentation
|
|
469
|
+
|
|
470
|
+
| Document | Description |
|
|
471
|
+
|----------|-------------|
|
|
472
|
+
| [Installation Guide](docs/installation.md) | Setup for all platforms |
|
|
473
|
+
| [CLI Reference](docs/cli-reference.md) | Complete command reference |
|
|
474
|
+
| [SMART Workflow](docs/smart-workflow.md) | AI-assisted analysis guide |
|
|
475
|
+
| [MCP Tools API](docs/api/mcp_tools_specification.md) | MCP integration details |
|
|
476
|
+
| [Features](docs/features.md) | Language support details |
|
|
477
|
+
| [Architecture](docs/architecture.md) | System design |
|
|
478
|
+
| [Contributing](docs/CONTRIBUTING.md) | Development guidelines |
|
|
479
|
+
| [Changelog](CHANGELOG.md) | Version history |
|
|
480
|
+
|
|
481
|
+
---
|
|
482
|
+
|
|
483
|
+
**🎯 Built for developers working with large codebases and AI assistants**
|
|
484
|
+
|
|
485
|
+
*Making every line of code understandable to AI, enabling every project to break through token limitations*
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
tree_sitter_analyzer/__init__.py,sha256=ZCKXh3DvwxM_bdTVZzUqEuqdEzv7BSjg0AWurU8W-5E,3070
|
|
2
|
+
tree_sitter_analyzer/__main__.py,sha256=Zl79tpe4UaMu-7yeztc06tgP0CVMRnvGgas4ZQP5SCs,228
|
|
3
|
+
tree_sitter_analyzer/api.py,sha256=DHu83BVAedAf_cgo8s--bABqYaVUhsE-aS8hpBRY0DA,30964
|
|
4
|
+
tree_sitter_analyzer/cli_main.py,sha256=0h4j8ot5km5MDs-BPU9p21r852MgdoazRfJRplTnveU,15614
|
|
5
|
+
tree_sitter_analyzer/constants.py,sha256=cLinYTFXUFs3bDmRML9Kh3fV-TOCyHF37OOVsQfSdpM,2462
|
|
6
|
+
tree_sitter_analyzer/encoding_utils.py,sha256=gd5hDWskt-xFIWdC5TlStPHwlUxKykvpVAuFfmd39eo,16934
|
|
7
|
+
tree_sitter_analyzer/exceptions.py,sha256=3sDUPBlBS5X_7AsYR1KGkw6dJo0fUiwEPJCp_6iEp6o,23039
|
|
8
|
+
tree_sitter_analyzer/file_handler.py,sha256=vDIeVpIpCwqIYd97NW5hkiqqkNOdmB_ia2voFHqLPWI,8242
|
|
9
|
+
tree_sitter_analyzer/language_detector.py,sha256=CwH-6hSq4FXdJv2KqwxuauE-7ZnIBVtFNsQipKOcBoo,17620
|
|
10
|
+
tree_sitter_analyzer/language_loader.py,sha256=hA38UKJR1IvNYPPMA08Et40JLrQcgPoiytPFw4sqm-A,9942
|
|
11
|
+
tree_sitter_analyzer/legacy_table_formatter.py,sha256=v2Zr7xGOMMTpSb1Bpocg-LzZ9XMhnFvYq5jYNMz9LHQ,34278
|
|
12
|
+
tree_sitter_analyzer/models.py,sha256=g8FbiMUHoJSbQkYyD_KD9A4MGRkbl3h-0mrkbwSsGAk,28417
|
|
13
|
+
tree_sitter_analyzer/mypy_current_errors.txt,sha256=aJirARDi7g_aRv75MC-UEMgxeqjoDVUk9m0bn7OYeko,127
|
|
14
|
+
tree_sitter_analyzer/output_manager.py,sha256=hRAp6Aa9k05UVvZkOyRCEz2Lf7blx05fWnculHd86RA,8264
|
|
15
|
+
tree_sitter_analyzer/project_detector.py,sha256=-zmtm12EvVD_6TDxS_6KpzuswP2Bpppnxq50kAEDyMA,9430
|
|
16
|
+
tree_sitter_analyzer/query_loader.py,sha256=zKAn4euS99_fDjvDF1mTL3GVdmMpUxqTej3Co1z8Pqk,10351
|
|
17
|
+
tree_sitter_analyzer/table_formatter.py,sha256=wkoV32NpLNgYGi2rhT_COhhqSZChgDYngWAzOKBZpLw,30223
|
|
18
|
+
tree_sitter_analyzer/cli/__init__.py,sha256=O_3URpbdu5Ilb2-r48LjbZuWtOWQu_BhL3pa6C0G3Bk,871
|
|
19
|
+
tree_sitter_analyzer/cli/__main__.py,sha256=Xq8o8-0dPnMDU9WZqmqhzr98rx8rvoffTUHAkAwl-L8,218
|
|
20
|
+
tree_sitter_analyzer/cli/argument_validator.py,sha256=48irBz9drq6i66JE5BHagyo4bVgd-MVmY0BO53JwjLM,2631
|
|
21
|
+
tree_sitter_analyzer/cli/info_commands.py,sha256=kwnqs1dKKtZDS1WLMLurBwnC_9W0-8oOrDHCE0J5Z2M,4434
|
|
22
|
+
tree_sitter_analyzer/cli/commands/__init__.py,sha256=jpcpM1ptLuxLMBDUv1y_a87k8RAw1otFzeYpWtXvz3Y,671
|
|
23
|
+
tree_sitter_analyzer/cli/commands/advanced_command.py,sha256=uG5RyPhoy4mz_tfaxiFEO-NGQRposa-11bAJCwsOpfA,8562
|
|
24
|
+
tree_sitter_analyzer/cli/commands/base_command.py,sha256=MGlRA6sIcMt6ta-07NOFcPz8-eUwwS2g-JlBVYn105s,6611
|
|
25
|
+
tree_sitter_analyzer/cli/commands/default_command.py,sha256=RAR_eaOK3EndIqU7QL5UAn44mwyhItTN7aUaKL1WmSc,524
|
|
26
|
+
tree_sitter_analyzer/cli/commands/find_and_grep_cli.py,sha256=Kg5H11FB7dEOS9Ors41T89roJjuwJ4t26n_Dv2ra5Og,6290
|
|
27
|
+
tree_sitter_analyzer/cli/commands/list_files_cli.py,sha256=rgeP3PFrBYhebvnWJ7dOEFmtpwvGmAacq8VfxZyPNzE,3842
|
|
28
|
+
tree_sitter_analyzer/cli/commands/partial_read_command.py,sha256=lbuy9X_q5pyf_cJXVvx_AYJg_tfxF1R0U93Is-MVW_A,4619
|
|
29
|
+
tree_sitter_analyzer/cli/commands/query_command.py,sha256=VHbDJ-f2Ch9XdibD9Dfcu1d8RVnQ5BLfaWBYDnWEju8,4040
|
|
30
|
+
tree_sitter_analyzer/cli/commands/search_content_cli.py,sha256=A30806cWaBfqfchhIZ0qK23cfoIQTTYk33Y119TGx34,5093
|
|
31
|
+
tree_sitter_analyzer/cli/commands/structure_command.py,sha256=syoiA0YpcUj28kEAZ79nJ4a9GxKhvq_UVokUERETK9c,5563
|
|
32
|
+
tree_sitter_analyzer/cli/commands/summary_command.py,sha256=lucn4weCpDrck-Z48ikrRZWjlGXaGJ4oCGMcgguW9yQ,3894
|
|
33
|
+
tree_sitter_analyzer/cli/commands/table_command.py,sha256=csogWxTWpp3TXKCYoonPU0VufHf5S30cX1Ugjp1Jy7U,16886
|
|
34
|
+
tree_sitter_analyzer/core/__init__.py,sha256=VlYOy1epW16vjaVd__knESewnU0sfXF9a4hjrFxiSEE,440
|
|
35
|
+
tree_sitter_analyzer/core/analysis_engine.py,sha256=yyiHHq8aTjaYk5lyNkz-KPREfoidKoZIY8e-G9r-AyE,18848
|
|
36
|
+
tree_sitter_analyzer/core/cache_service.py,sha256=irzObR7zd6Qmk0vl5wtRiNb_tfUHfVl3XZiRJDkfvoA,10294
|
|
37
|
+
tree_sitter_analyzer/core/engine.py,sha256=cnNYnu-2FEZnB_7cFeInyA7GvXUwXzdoFYBe3pwNYd0,19614
|
|
38
|
+
tree_sitter_analyzer/core/parser.py,sha256=zGA_SEZFZmT9XYZylWYRL6vsO5pk5pTNpTWi3B_wQb8,9264
|
|
39
|
+
tree_sitter_analyzer/core/query.py,sha256=rXIXAVdmi4UxCwMbwDUb66H4oAivp7fcmFJJtfxwvro,20440
|
|
40
|
+
tree_sitter_analyzer/core/query_filter.py,sha256=PvGztAZFooFNZe6iHNmbg6RUNtMvq6f6hBZFzllig6Y,6591
|
|
41
|
+
tree_sitter_analyzer/core/query_service.py,sha256=OaJFs8TInM8QbDWbWrQ37ZgnAzF1IRJemSjWmJ9pQG4,12651
|
|
42
|
+
tree_sitter_analyzer/formatters/__init__.py,sha256=yVb4HF_4EEPRwTf3y3-vM2NllrhykG3zlvQhN-6dB4c,31
|
|
43
|
+
tree_sitter_analyzer/formatters/base_formatter.py,sha256=yVBGE1FGzF-Adip9Upt0YdFr67EJmqMneLRmf3_guxU,6706
|
|
44
|
+
tree_sitter_analyzer/formatters/csharp_formatter.py,sha256=10ttpUXua4sfSpdnCHLxLi3xwHv-uqtYBt1DMXzhUJo,14169
|
|
45
|
+
tree_sitter_analyzer/formatters/formatter_config.py,sha256=ebGc_wGqkRTBAzsMBo7_mcOrGo0naCvHsaZiQ7PPhuY,4658
|
|
46
|
+
tree_sitter_analyzer/formatters/formatter_factory.py,sha256=4fsSMxhBmGWFmPjcuwkTvgiIWWFireaOaChYi1UNnSM,2381
|
|
47
|
+
tree_sitter_analyzer/formatters/formatter_registry.py,sha256=XXi34MH2tLfmQ63NEcCc4l8ettmc04Dpp745FaLkC7U,12060
|
|
48
|
+
tree_sitter_analyzer/formatters/formatter_selector.py,sha256=ARiM4mlag25VGTypw62C_mUjXU77P_5p3nxXNG9tCBw,3366
|
|
49
|
+
tree_sitter_analyzer/formatters/go_formatter.py,sha256=uRfwPKJrTFjfqZGrMcs7-QAdMjskfkrcGfOpi7QDkRo,13943
|
|
50
|
+
tree_sitter_analyzer/formatters/html_formatter.py,sha256=Nk8aSbFRDYuuammSR8kc6giIhosML0hhLHXHIwaCXyA,19322
|
|
51
|
+
tree_sitter_analyzer/formatters/java_formatter.py,sha256=MytD5J1jmtftSA19vsABJviHt3uRAuEpmbATKxO_P1o,16646
|
|
52
|
+
tree_sitter_analyzer/formatters/javascript_formatter.py,sha256=xnISAvPX41jq2-0I5wSPidBcvk6NuWMYn1U16XIsAqk,23176
|
|
53
|
+
tree_sitter_analyzer/formatters/kotlin_formatter.py,sha256=BlYGzymuCMJOL-PGvZj84RmGF0JkP6lpQ1FkeaWLl5k,10427
|
|
54
|
+
tree_sitter_analyzer/formatters/language_formatter_factory.py,sha256=JthcRxvQE2H3J1pdZZ3c4gWSUTBNhBgs3dQInn-jLeM,4355
|
|
55
|
+
tree_sitter_analyzer/formatters/legacy_formatter_adapters.py,sha256=BmnfV52leCPXdHv50JY5gS3iax4XePsgveHAsHmSkJo,8346
|
|
56
|
+
tree_sitter_analyzer/formatters/markdown_formatter.py,sha256=EljdcDV_QnWRe-AlCQHFxmWFhCZL07mVwozVsEaWJ_k,29616
|
|
57
|
+
tree_sitter_analyzer/formatters/php_formatter.py,sha256=Pstf9kgXfGfJ6-kSD04Ds1jNW_7rhwqnAu2T-NOIsrM,11947
|
|
58
|
+
tree_sitter_analyzer/formatters/python_formatter.py,sha256=JLU-IqHiPXIsQvoNcSPA0mAx0wR__niW0z71VhOLaCs,32725
|
|
59
|
+
tree_sitter_analyzer/formatters/ruby_formatter.py,sha256=Z4KNKSGGRHrKhtGgkuHHCpNemNJ3bn0FF9yXx1kdWcw,10630
|
|
60
|
+
tree_sitter_analyzer/formatters/rust_formatter.py,sha256=Svic-fGvKG6XsW4z3Wwb2XvPapQSBUL8BE8qLnN3NMQ,9255
|
|
61
|
+
tree_sitter_analyzer/formatters/sql_formatter_wrapper.py,sha256=LRFJl_d412MPf6EHL4VNyzEKT6jFRkOz_g7TifIIVSg,25009
|
|
62
|
+
tree_sitter_analyzer/formatters/sql_formatters.py,sha256=CNAZvFrZTA5ZAbPMs7GFwqToMyo9JXUyrJiRykO2CHY,20518
|
|
63
|
+
tree_sitter_analyzer/formatters/typescript_formatter.py,sha256=TPYCrpa6uKFNtqKmNteDA62ln9wBp6xFtt4x44xc-dM,22024
|
|
64
|
+
tree_sitter_analyzer/formatters/yaml_formatter.py,sha256=F6iZ9LSeTvWxgKOxY6kAX4KoyGfL4APNgFSZJ3QMu7E,19402
|
|
65
|
+
tree_sitter_analyzer/interfaces/__init__.py,sha256=OcT7eNIU0ZXvAeAXbhDqRG3puxn93HeSLqplwj6npTM,271
|
|
66
|
+
tree_sitter_analyzer/interfaces/cli.py,sha256=c6CGfF6cgOwgpBimHV1myZ5JfNqil5tCVBOfG5-zijU,17100
|
|
67
|
+
tree_sitter_analyzer/interfaces/cli_adapter.py,sha256=8j3xL3k6wWrGQCq0KCntqbvSxKy931sT5M96pYhkn9c,11402
|
|
68
|
+
tree_sitter_analyzer/interfaces/mcp_adapter.py,sha256=hqetonIcFslOuQMAEwa3U8kMmoyJtWdfCac9xJDg01Q,7749
|
|
69
|
+
tree_sitter_analyzer/interfaces/mcp_server.py,sha256=ms91ExpH7DSV4wOXAePsCB3ATGQOsFZVviafSSaQplg,16710
|
|
70
|
+
tree_sitter_analyzer/languages/__init__.py,sha256=VTXxJgVjHJAciLhX0zzXOS4EygZMtebeYUbi_0z6fGw,340
|
|
71
|
+
tree_sitter_analyzer/languages/csharp_plugin.py,sha256=tgZkbHG1HlW_HJFMIrraDC-lRThMFdzr8ZeXVUKgu-w,35944
|
|
72
|
+
tree_sitter_analyzer/languages/css_plugin.py,sha256=1ttM-FSN_43LAZ-vFnQ9tKkAO3BEh3YH7EuemX5tyZw,16341
|
|
73
|
+
tree_sitter_analyzer/languages/go_plugin.py,sha256=syu15I1kIcHTMSi5VCO0sgAsGsim_5o_vhfxuAIF0SY,29125
|
|
74
|
+
tree_sitter_analyzer/languages/html_plugin.py,sha256=0DWzWsZ8zUw4LMyBgE48Vvq0TQ57Qsv2Q5A48_pItec,17977
|
|
75
|
+
tree_sitter_analyzer/languages/java_plugin.py,sha256=FETHrDvYi4OFABO7B_3jzoaSLRduJINYJXuRnE3NmI8,50961
|
|
76
|
+
tree_sitter_analyzer/languages/javascript_plugin.py,sha256=gWmW0CwhUwhgA23K9bN1GAHZvBiRobug2oXX8KIWhQE,60305
|
|
77
|
+
tree_sitter_analyzer/languages/kotlin_plugin.py,sha256=Ym3C-SfxoGLiB6VUL25neKuN_Yj7c3EecECmu32_vgo,22952
|
|
78
|
+
tree_sitter_analyzer/languages/markdown_plugin.py,sha256=gLrt0Mba1Ayy9k4KaGzD7xYxp5S7fj46T4u37wPXcAw,77669
|
|
79
|
+
tree_sitter_analyzer/languages/php_plugin.py,sha256=35t4KhAYD3fv9G-fQYnve75oFXwCfQaYZRyFx8sCnVk,29093
|
|
80
|
+
tree_sitter_analyzer/languages/python_plugin.py,sha256=Jvykg0DTHhH8wKpcaubmL0JzW3A_PjyIpiXIBoOUteE,66061
|
|
81
|
+
tree_sitter_analyzer/languages/ruby_plugin.py,sha256=t94KpcY9psiFq_4fnLuRwTtEQ7veucNYEnktOkM9W9g,24705
|
|
82
|
+
tree_sitter_analyzer/languages/rust_plugin.py,sha256=_IVLQGdL5euesSnimJwjGOUM71laAXjeOoEqog9_5T0,24909
|
|
83
|
+
tree_sitter_analyzer/languages/sql_plugin.py,sha256=3vXIswBZsnAV_D9oyWFQmtGYmLPFcu8YhQwc1b52Lls,97011
|
|
84
|
+
tree_sitter_analyzer/languages/typescript_plugin.py,sha256=0IhuKGw2IEwtARdjFJbhfy8f-Lf2Cy0U2AKrDDPB8T4,72606
|
|
85
|
+
tree_sitter_analyzer/languages/yaml_plugin.py,sha256=-tV8IONh-mWEqwmBXDR5euvs84kC06nxhmvVhw0hXeg,26143
|
|
86
|
+
tree_sitter_analyzer/mcp/__init__.py,sha256=8tC54ZYcZBcFEio-aDet7evzis50zV5gbHuvn_7K514,944
|
|
87
|
+
tree_sitter_analyzer/mcp/server.py,sha256=g7U-MYy6Dc4KSkeKQeuZvrIIl782W7ejcJgSiXws4ZU,33374
|
|
88
|
+
tree_sitter_analyzer/mcp/resources/__init__.py,sha256=D46ZDhPQaCrQze8dHmijMg1QZQ4ABRIjG532sFpuGPo,1367
|
|
89
|
+
tree_sitter_analyzer/mcp/resources/code_file_resource.py,sha256=ZX5ZYSJfylBedpL80kTDlco2YZqgRMb5f3OW0VvOVRM,6166
|
|
90
|
+
tree_sitter_analyzer/mcp/resources/project_stats_resource.py,sha256=ua-YHxRL1k8smX1pDZorfCjhUFYQpDwcqHzhnOVotx8,20548
|
|
91
|
+
tree_sitter_analyzer/mcp/tools/__init__.py,sha256=9KfetZTaUhvWTeKuZPYzWb7ZomFQ8SsR1qmXVBT4E7c,739
|
|
92
|
+
tree_sitter_analyzer/mcp/tools/analyze_scale_tool.py,sha256=09zkZ0Ilp_yZRYYhHHZG-0OvLGeM6b_rTfY3N9ZJyVI,31031
|
|
93
|
+
tree_sitter_analyzer/mcp/tools/analyze_scale_tool_cli_compatible.py,sha256=x0ynW_rxtg1-pLAcDfSsIe-U-p3ZOjCCPml0v5hptG4,10486
|
|
94
|
+
tree_sitter_analyzer/mcp/tools/base_tool.py,sha256=K02l34Yn6brgg45yIXuSsRPB4Cp870ba86ZBlSU4OW8,3689
|
|
95
|
+
tree_sitter_analyzer/mcp/tools/fd_rg_utils.py,sha256=FxJchXLB-tJ3o3GKgJhpG2qBNjbYUDusWqlgGRMWLcY,25460
|
|
96
|
+
tree_sitter_analyzer/mcp/tools/find_and_grep_tool.py,sha256=nhQZ602ZvcIPGEkzireLSLz5RtXugtVu-Nt8vGHS6To,32230
|
|
97
|
+
tree_sitter_analyzer/mcp/tools/list_files_tool.py,sha256=QRy4iXlrO0GXcLcaylNt-TFPwvqrJsO7I4pSOWf4lWQ,18283
|
|
98
|
+
tree_sitter_analyzer/mcp/tools/output_format_validator.py,sha256=uBk33SAayF8yCJgkF2hWo8oUTRnCGTcEUg8rYb3O77w,5437
|
|
99
|
+
tree_sitter_analyzer/mcp/tools/query_tool.py,sha256=3Hu_dqgTMfmyevIHdLP_wgUhpuh5lHT9djm6vNEwUy0,16740
|
|
100
|
+
tree_sitter_analyzer/mcp/tools/read_partial_tool.py,sha256=O7UyZSNW5_-5hGOkO9xiw4qDY5WKvHtTiGQ_WjhAIA8,18305
|
|
101
|
+
tree_sitter_analyzer/mcp/tools/search_content_tool.py,sha256=oKamJmOoc-gLoR79InRcg6r8WH8C-JQjCH82q0a2TwE,38409
|
|
102
|
+
tree_sitter_analyzer/mcp/tools/table_format_tool.py,sha256=ZXKfg5tNHOK8lzk-djnfW1umXnIZNA6_4zrDMibMO_U,22891
|
|
103
|
+
tree_sitter_analyzer/mcp/tools/universal_analyze_tool.py,sha256=-zZnqN9WcoyRTKM_16ADH859LSebzi34BGYwQL2zCOs,25084
|
|
104
|
+
tree_sitter_analyzer/mcp/utils/__init__.py,sha256=TgTTKsRJAqF95g1fAp5SR_zQVDkImpc_5R0Dw529UUw,3126
|
|
105
|
+
tree_sitter_analyzer/mcp/utils/error_handler.py,sha256=msrQHX67K3vhJsEc3OPRz5mmWU_yoHz55Lnxy0IZuy4,18404
|
|
106
|
+
tree_sitter_analyzer/mcp/utils/file_output_factory.py,sha256=6yRWBzJuUsYxp7iZhxiSNZ4go1t3wbg8WHuKzDs57Qc,7392
|
|
107
|
+
tree_sitter_analyzer/mcp/utils/file_output_manager.py,sha256=JZ3XFNycI7viIdraopx1yg-ONbO-sJsJuycgJjG0jxQ,10977
|
|
108
|
+
tree_sitter_analyzer/mcp/utils/gitignore_detector.py,sha256=bdIRI1JcaT0C_SP1z8E1Zv_gy199i9WVRl2oU5jTeuQ,12530
|
|
109
|
+
tree_sitter_analyzer/mcp/utils/path_resolver.py,sha256=LDIjxQJqMHJqTms41WwV2jQ_NlePrVPpqNToWG4usr0,14992
|
|
110
|
+
tree_sitter_analyzer/mcp/utils/search_cache.py,sha256=ZNv84st6PeejDY1B50AKTbItpXs9HS6JrpR-Ozjyc1c,12991
|
|
111
|
+
tree_sitter_analyzer/platform_compat/__init__.py,sha256=Wib3wT-M-So8gvT2vdwSyqlVY2G54MzzPBLdyZ5F9ek,101
|
|
112
|
+
tree_sitter_analyzer/platform_compat/adapter.py,sha256=fqwVUKGKlk-70HGolFU7b02D16klb-JyF614IFiFEvE,11330
|
|
113
|
+
tree_sitter_analyzer/platform_compat/compare.py,sha256=XNk0mSl7tthWKEI7675KWijupeBpknuJgwDKzxGZN2o,7001
|
|
114
|
+
tree_sitter_analyzer/platform_compat/detector.py,sha256=KOY_7QIdzLWk9WBuPwyvKkLbyisk0x51v226Fbn9tB4,1735
|
|
115
|
+
tree_sitter_analyzer/platform_compat/fixtures.py,sha256=EDrlI8esIuYoEfQi_22w0gF_7CWRD6Px3TWvK3-dxaI,5913
|
|
116
|
+
tree_sitter_analyzer/platform_compat/profiles.py,sha256=zLKC7DXCwYATc6qCulNOCSvAbbd8xrhD3p7d5wbOopg,6875
|
|
117
|
+
tree_sitter_analyzer/platform_compat/record.py,sha256=ovMQK2LgjfsvIm5cPmn0sb7zUmWzfeVYHOJFCUQAJgk,1630
|
|
118
|
+
tree_sitter_analyzer/platform_compat/recorder.py,sha256=OH1lY1STMgo37c9B61dBWWlMlqNvLlZsohXVkRrS8CE,4862
|
|
119
|
+
tree_sitter_analyzer/platform_compat/report.py,sha256=ShnfkthQfYTPKJ-NfBKYeROM-KrnFYt0kE2YrvKsQnY,2862
|
|
120
|
+
tree_sitter_analyzer/plugins/__init__.py,sha256=ITE9bTz7NO4axnn8g5Z-1_ydhSLT0RnY6Y1J9OhUP3E,10326
|
|
121
|
+
tree_sitter_analyzer/plugins/base.py,sha256=ozgUoktxhI8ZVACHoceNRwylpty3ChUu6KK0x-yqt3o,20389
|
|
122
|
+
tree_sitter_analyzer/plugins/manager.py,sha256=ccypwnU88ClN8mCRSAzXWL_ihNr0UZ-m7XDFNy0kVwg,12719
|
|
123
|
+
tree_sitter_analyzer/queries/__init__.py,sha256=vqeF5YxaVFXs_Z5DwaTv02qbGl4p08AwzlLYmTLn5LQ,702
|
|
124
|
+
tree_sitter_analyzer/queries/csharp.py,sha256=rbTB1qOYfewSCwZ67g5225xaxq65t3d8OPPSuSAAcqk,5646
|
|
125
|
+
tree_sitter_analyzer/queries/css.py,sha256=az5BPZFG2YPI-YbJk1gQXNhpu2ydnyvMaMxA4azpFmQ,17778
|
|
126
|
+
tree_sitter_analyzer/queries/go.py,sha256=QN0AZae9OkBKk2fl5kLtsyTSP8WBeSJ0So0uv073G7A,7507
|
|
127
|
+
tree_sitter_analyzer/queries/html.py,sha256=QIBs18hJfWNfmjPbcglnq2jsDhvfF1zkNG3KpVzfHIU,14552
|
|
128
|
+
tree_sitter_analyzer/queries/java.py,sha256=6lEDaUt-jbV9Mlhnslyt6fnudgE12rkufRIwPzyg770,12787
|
|
129
|
+
tree_sitter_analyzer/queries/javascript.py,sha256=seJ5eBR1kAZojCF3p6Rt_X2uP75cJtCF8v5DjQeboHA,22907
|
|
130
|
+
tree_sitter_analyzer/queries/kotlin.py,sha256=am-SQ7vA4ok-dIyuo3XThrgCgq5GLOiVrlRD_mzZdJw,5160
|
|
131
|
+
tree_sitter_analyzer/queries/markdown.py,sha256=3Nxe9c1BSHeREPVjmZhQHyVHFwexOiQxLi3AfaLpdW8,6945
|
|
132
|
+
tree_sitter_analyzer/queries/php.py,sha256=34tNBf5eJmP2NNCv6mBtTZmEqh3HaLXqjRk2NPYjPbE,2018
|
|
133
|
+
tree_sitter_analyzer/queries/python.py,sha256=pKzua8xu7a6fqbrZZEfA2x8TAl4u9Z_zfE3K1_dUqAM,26188
|
|
134
|
+
tree_sitter_analyzer/queries/ruby.py,sha256=NhDm2tDP1A-vI0jxzcQIJakEPRUakhz6UN6y3hRnPI8,2074
|
|
135
|
+
tree_sitter_analyzer/queries/rust.py,sha256=_XguPl-s2OoV7sBmzWGa_GuKgRebZYn0rfZo37vfJP0,5797
|
|
136
|
+
tree_sitter_analyzer/queries/sql.py,sha256=-LUWOdiY7aojZ3LtJt2POrKeUWuQq7Co02kXtpXW9Ko,17502
|
|
137
|
+
tree_sitter_analyzer/queries/typescript.py,sha256=I0bWcCv-sRcZHVsdHdfb1UIRI_G3l0S9A1oR4LCjLwE,22527
|
|
138
|
+
tree_sitter_analyzer/queries/yaml.py,sha256=_mv8xSQYx5bUZrP-sG12iqAc5ezUcKTkcX3R-Hi_qIE,6105
|
|
139
|
+
tree_sitter_analyzer/security/__init__.py,sha256=ZTqTt24hsljCpTXAZpJC57L7MU5lJLTf_XnlvEzXwEE,623
|
|
140
|
+
tree_sitter_analyzer/security/boundary_manager.py,sha256=JwhCCQXVByvuUJcrDiAVC02Xxjv0YyOMMehqDs5ocko,9223
|
|
141
|
+
tree_sitter_analyzer/security/regex_checker.py,sha256=90c5Eo6s07q7qz-YSaJyJHfHaBZH6RCrMtK2qBnWXIA,9626
|
|
142
|
+
tree_sitter_analyzer/security/validator.py,sha256=pEOXCep6YznU2plMTXTftVeMPSD6AjNhdBYX-ZO1EAU,21891
|
|
143
|
+
tree_sitter_analyzer/utils/__init__.py,sha256=-zNFO9ni-GqlbZlVNVqkR0UoD9XL1YeB6D90ETvV3eI,1228
|
|
144
|
+
tree_sitter_analyzer/utils/logging.py,sha256=AWIhM69OgcmXZt-cf4oTULTizXPNTUp9e1ugPYFgA4o,16008
|
|
145
|
+
tree_sitter_analyzer/utils/tree_sitter_compat.py,sha256=1bcTUe88CVNzqADlmU23UzSNVlBsnb9E02f7U9VAbpQ,10623
|
|
146
|
+
tree_sitter_analyzer-1.9.17.1.dist-info/METADATA,sha256=HbVdVTSMh4mmL1iN4HF-lGgeMaCdzmSfgf9eTkGsY6o,20939
|
|
147
|
+
tree_sitter_analyzer-1.9.17.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
148
|
+
tree_sitter_analyzer-1.9.17.1.dist-info/entry_points.txt,sha256=-7ZE2hoWqUANuNLHnk8C6b9Tab7yoC6-ULjcUylr_Ak,1460
|
|
149
|
+
tree_sitter_analyzer-1.9.17.1.dist-info/RECORD,,
|