lucidscan 0.5.12__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.
Files changed (91) hide show
  1. lucidscan/__init__.py +12 -0
  2. lucidscan/bootstrap/__init__.py +26 -0
  3. lucidscan/bootstrap/paths.py +160 -0
  4. lucidscan/bootstrap/platform.py +111 -0
  5. lucidscan/bootstrap/validation.py +76 -0
  6. lucidscan/bootstrap/versions.py +119 -0
  7. lucidscan/cli/__init__.py +50 -0
  8. lucidscan/cli/__main__.py +8 -0
  9. lucidscan/cli/arguments.py +405 -0
  10. lucidscan/cli/commands/__init__.py +64 -0
  11. lucidscan/cli/commands/autoconfigure.py +294 -0
  12. lucidscan/cli/commands/help.py +69 -0
  13. lucidscan/cli/commands/init.py +656 -0
  14. lucidscan/cli/commands/list_scanners.py +59 -0
  15. lucidscan/cli/commands/scan.py +307 -0
  16. lucidscan/cli/commands/serve.py +142 -0
  17. lucidscan/cli/commands/status.py +84 -0
  18. lucidscan/cli/commands/validate.py +105 -0
  19. lucidscan/cli/config_bridge.py +152 -0
  20. lucidscan/cli/exit_codes.py +17 -0
  21. lucidscan/cli/runner.py +284 -0
  22. lucidscan/config/__init__.py +29 -0
  23. lucidscan/config/ignore.py +178 -0
  24. lucidscan/config/loader.py +431 -0
  25. lucidscan/config/models.py +316 -0
  26. lucidscan/config/validation.py +645 -0
  27. lucidscan/core/__init__.py +3 -0
  28. lucidscan/core/domain_runner.py +463 -0
  29. lucidscan/core/git.py +174 -0
  30. lucidscan/core/logging.py +34 -0
  31. lucidscan/core/models.py +207 -0
  32. lucidscan/core/streaming.py +340 -0
  33. lucidscan/core/subprocess_runner.py +164 -0
  34. lucidscan/detection/__init__.py +21 -0
  35. lucidscan/detection/detector.py +154 -0
  36. lucidscan/detection/frameworks.py +270 -0
  37. lucidscan/detection/languages.py +328 -0
  38. lucidscan/detection/tools.py +229 -0
  39. lucidscan/generation/__init__.py +15 -0
  40. lucidscan/generation/config_generator.py +275 -0
  41. lucidscan/generation/package_installer.py +330 -0
  42. lucidscan/mcp/__init__.py +20 -0
  43. lucidscan/mcp/formatter.py +510 -0
  44. lucidscan/mcp/server.py +297 -0
  45. lucidscan/mcp/tools.py +1049 -0
  46. lucidscan/mcp/watcher.py +237 -0
  47. lucidscan/pipeline/__init__.py +17 -0
  48. lucidscan/pipeline/executor.py +187 -0
  49. lucidscan/pipeline/parallel.py +181 -0
  50. lucidscan/plugins/__init__.py +40 -0
  51. lucidscan/plugins/coverage/__init__.py +28 -0
  52. lucidscan/plugins/coverage/base.py +160 -0
  53. lucidscan/plugins/coverage/coverage_py.py +454 -0
  54. lucidscan/plugins/coverage/istanbul.py +411 -0
  55. lucidscan/plugins/discovery.py +107 -0
  56. lucidscan/plugins/enrichers/__init__.py +61 -0
  57. lucidscan/plugins/enrichers/base.py +63 -0
  58. lucidscan/plugins/linters/__init__.py +26 -0
  59. lucidscan/plugins/linters/base.py +125 -0
  60. lucidscan/plugins/linters/biome.py +448 -0
  61. lucidscan/plugins/linters/checkstyle.py +393 -0
  62. lucidscan/plugins/linters/eslint.py +368 -0
  63. lucidscan/plugins/linters/ruff.py +498 -0
  64. lucidscan/plugins/reporters/__init__.py +45 -0
  65. lucidscan/plugins/reporters/base.py +30 -0
  66. lucidscan/plugins/reporters/json_reporter.py +79 -0
  67. lucidscan/plugins/reporters/sarif_reporter.py +303 -0
  68. lucidscan/plugins/reporters/summary_reporter.py +61 -0
  69. lucidscan/plugins/reporters/table_reporter.py +81 -0
  70. lucidscan/plugins/scanners/__init__.py +57 -0
  71. lucidscan/plugins/scanners/base.py +60 -0
  72. lucidscan/plugins/scanners/checkov.py +484 -0
  73. lucidscan/plugins/scanners/opengrep.py +464 -0
  74. lucidscan/plugins/scanners/trivy.py +492 -0
  75. lucidscan/plugins/test_runners/__init__.py +27 -0
  76. lucidscan/plugins/test_runners/base.py +111 -0
  77. lucidscan/plugins/test_runners/jest.py +381 -0
  78. lucidscan/plugins/test_runners/karma.py +481 -0
  79. lucidscan/plugins/test_runners/playwright.py +434 -0
  80. lucidscan/plugins/test_runners/pytest.py +598 -0
  81. lucidscan/plugins/type_checkers/__init__.py +27 -0
  82. lucidscan/plugins/type_checkers/base.py +106 -0
  83. lucidscan/plugins/type_checkers/mypy.py +355 -0
  84. lucidscan/plugins/type_checkers/pyright.py +313 -0
  85. lucidscan/plugins/type_checkers/typescript.py +280 -0
  86. lucidscan-0.5.12.dist-info/METADATA +242 -0
  87. lucidscan-0.5.12.dist-info/RECORD +91 -0
  88. lucidscan-0.5.12.dist-info/WHEEL +5 -0
  89. lucidscan-0.5.12.dist-info/entry_points.txt +34 -0
  90. lucidscan-0.5.12.dist-info/licenses/LICENSE +201 -0
  91. lucidscan-0.5.12.dist-info/top_level.txt +1 -0
@@ -0,0 +1,242 @@
1
+ Metadata-Version: 2.4
2
+ Name: lucidscan
3
+ Version: 0.5.12
4
+ Summary: LucidScan - The trust layer for AI-assisted development
5
+ Author-email: Voldeq GmbH <toni.antunovic@voldeq.com>
6
+ License: Apache-2.0
7
+ Keywords: security,scanner,devsecops,sast,sca,iac,container,vulnerability,trivy,semgrep,checkov,cli,mcp,ai,claude,cursor,linting,type-checking,testing,coverage
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Environment :: Console
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Intended Audience :: Information Technology
12
+ Classifier: Intended Audience :: System Administrators
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Operating System :: MacOS
15
+ Classifier: Operating System :: POSIX :: Linux
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Security
21
+ Classifier: Topic :: Software Development :: Quality Assurance
22
+ Classifier: Topic :: Software Development :: Testing
23
+ Classifier: Typing :: Typed
24
+ Requires-Python: >=3.10
25
+ Description-Content-Type: text/markdown
26
+ License-File: LICENSE
27
+ Requires-Dist: PyYAML>=6.0
28
+ Requires-Dist: pathspec>=0.12.0
29
+ Requires-Dist: questionary>=2.0
30
+ Requires-Dist: Jinja2>=3.0
31
+ Requires-Dist: mcp>=1.0.0
32
+ Requires-Dist: watchdog>=4.0.0
33
+ Requires-Dist: defusedxml>=0.7.1
34
+ Requires-Dist: tomli>=2.0.0; python_version < "3.11"
35
+ Provides-Extra: dev
36
+ Requires-Dist: pytest>=7.0; extra == "dev"
37
+ Requires-Dist: pytest-asyncio>=0.23.0; extra == "dev"
38
+ Requires-Dist: mypy>=1.0; extra == "dev"
39
+ Requires-Dist: pyright>=1.1; extra == "dev"
40
+ Dynamic: license-file
41
+
42
+ # LucidScan
43
+
44
+ [![CI](https://github.com/voldeq/lucidscan/actions/workflows/ci.yml/badge.svg)](https://github.com/voldeq/lucidscan/actions/workflows/ci.yml)
45
+ [![codecov](https://codecov.io/gh/voldeq/lucidscan/graph/badge.svg)](https://codecov.io/gh/voldeq/lucidscan)
46
+ [![PyPI version](https://img.shields.io/pypi/v/lucidscan)](https://pypi.org/project/lucidscan/)
47
+ [![Python](https://img.shields.io/pypi/pyversions/lucidscan)](https://pypi.org/project/lucidscan/)
48
+ [![License](https://img.shields.io/github/license/voldeq/lucidscan)](https://github.com/voldeq/lucidscan/blob/main/LICENSE)
49
+
50
+ **The trust layer for AI-assisted development.**
51
+
52
+ LucidScan unifies linting, type checking, security scanning, testing, and coverage into a single pipeline that auto-configures for any project and integrates with AI coding tools like Claude Code and Cursor.
53
+
54
+ ```
55
+ AI writes code → LucidScan checks → AI fixes → repeat
56
+ ```
57
+
58
+ ## Quick Start
59
+
60
+ ```bash
61
+ # 1. Install LucidScan
62
+ pip install lucidscan
63
+
64
+ # 2. Set up your AI tools (Claude Code and/or Cursor)
65
+ lucidscan init --all
66
+
67
+ # 3. Restart your AI tool, then ask it:
68
+ # "Autoconfigure LucidScan for this project"
69
+ ```
70
+
71
+ That's it! Your AI assistant will analyze your codebase, ask you a few questions, and generate the `lucidscan.yml` configuration.
72
+
73
+ ### Alternative: CLI Configuration
74
+
75
+ If you prefer to configure without AI:
76
+
77
+ ```bash
78
+ lucidscan autoconfigure
79
+ ```
80
+
81
+ ### Running Scans
82
+
83
+ ```bash
84
+ # Run the full quality pipeline
85
+ lucidscan scan --all
86
+
87
+ # Run specific checks
88
+ lucidscan scan --linting # Linting (Ruff, ESLint, Biome)
89
+ lucidscan scan --type-checking # Type checking (mypy, pyright, tsc)
90
+ lucidscan scan --sast # Security code analysis (OpenGrep)
91
+ lucidscan scan --sca # Dependency vulnerabilities (Trivy)
92
+ lucidscan scan --iac # Infrastructure-as-Code (Checkov)
93
+ lucidscan scan --container # Container image scanning (Trivy)
94
+ lucidscan scan --testing # Run tests (pytest, Jest)
95
+ lucidscan scan --coverage # Coverage analysis
96
+
97
+ # Auto-fix linting issues
98
+ lucidscan scan --linting --fix
99
+ ```
100
+
101
+ ### AI Tool Setup
102
+
103
+ #### Claude Code
104
+
105
+ ```bash
106
+ lucidscan init --claude-code
107
+ ```
108
+
109
+ This:
110
+ - Adds LucidScan to your Claude Code MCP configuration (`.mcp.json`)
111
+ - Creates `.claude/CLAUDE.md` with scan workflow instructions
112
+
113
+ Restart Claude Code to activate.
114
+
115
+ #### Cursor
116
+
117
+ ```bash
118
+ lucidscan init --cursor
119
+ ```
120
+
121
+ This:
122
+ - Adds LucidScan to Cursor's MCP configuration (`~/.cursor/mcp.json`)
123
+ - Creates `.cursor/rules/lucidscan.mdc` with auto-scan rules
124
+
125
+ #### All AI Tools
126
+
127
+ ```bash
128
+ lucidscan init --all
129
+ ```
130
+
131
+ Configures both Claude Code and Cursor.
132
+
133
+ ## What It Checks
134
+
135
+ | Domain | Tools | What It Catches |
136
+ |--------|-------|-----------------|
137
+ | **Linting** | Ruff, ESLint, Biome, Checkstyle | Style issues, code smells |
138
+ | **Type Checking** | mypy, pyright, TypeScript | Type errors |
139
+ | **Security (SAST)** | OpenGrep | Code vulnerabilities |
140
+ | **Security (SCA)** | Trivy | Dependency vulnerabilities |
141
+ | **Security (IaC)** | Checkov | Infrastructure misconfigurations |
142
+ | **Security (Container)** | Trivy | Container image vulnerabilities |
143
+ | **Testing** | pytest, Jest, Karma (Angular), Playwright (E2E) | Test failures |
144
+ | **Coverage** | coverage.py, Istanbul | Coverage gaps |
145
+
146
+ All results are normalized to a common format.
147
+
148
+ ## Configuration
149
+
150
+ LucidScan auto-detects your project. For custom settings, create `lucidscan.yml`:
151
+
152
+ ```yaml
153
+ version: 1
154
+
155
+ pipeline:
156
+ linting:
157
+ enabled: true
158
+ tools:
159
+ - name: ruff
160
+
161
+ type_checking:
162
+ enabled: true
163
+ tools:
164
+ - name: mypy
165
+ strict: true
166
+
167
+ security:
168
+ enabled: true
169
+ tools:
170
+ - name: trivy
171
+ - name: opengrep
172
+
173
+ testing:
174
+ enabled: true
175
+ tools:
176
+ - name: pytest
177
+
178
+ coverage:
179
+ enabled: true
180
+ threshold: 80
181
+
182
+ fail_on:
183
+ linting: error
184
+ security: high
185
+ testing: any
186
+
187
+ ignore:
188
+ - "**/node_modules/**"
189
+ - "**/.venv/**"
190
+ ```
191
+
192
+ ## CLI Reference
193
+
194
+ ```bash
195
+ # Configure AI tools (Claude Code, Cursor)
196
+ lucidscan init --claude-code # Configure Claude Code
197
+ lucidscan init --cursor # Configure Cursor
198
+ lucidscan init --all # Configure all AI tools
199
+
200
+ # Auto-configure project (detect languages, generate lucidscan.yml)
201
+ lucidscan autoconfigure [--ci github|gitlab|bitbucket] [--non-interactive]
202
+
203
+ # Run quality pipeline
204
+ lucidscan scan [--linting] [--type-checking] [--sca] [--sast] [--iac] [--container] [--testing] [--coverage] [--all]
205
+ lucidscan scan [--fix] [--stream] [--format table|json|sarif|summary]
206
+ lucidscan scan [--fail-on critical|high|medium|low]
207
+
208
+ # Server mode
209
+ lucidscan serve --mcp # Run MCP server
210
+ lucidscan serve --watch # Watch mode with auto-checking
211
+
212
+ # Show status
213
+ lucidscan status [--tools]
214
+ ```
215
+
216
+ ## Exit Codes
217
+
218
+ | Code | Meaning |
219
+ |------|---------|
220
+ | 0 | All checks passed |
221
+ | 1 | Issues found above threshold |
222
+ | 2 | Tool execution error |
223
+ | 3 | Configuration error |
224
+
225
+ ## Development
226
+
227
+ ```bash
228
+ git clone https://github.com/voldeq/lucidscan.git
229
+ cd lucidscan
230
+ pip install -e ".[dev]"
231
+ pytest tests/
232
+ ```
233
+
234
+ ## Documentation
235
+
236
+ - [LLM Reference Documentation](docs/help.md) - For AI agents and detailed reference
237
+ - [Full Specification](docs/main.md)
238
+ - [Roadmap](docs/roadmap.md)
239
+
240
+ ## License
241
+
242
+ Apache 2.0
@@ -0,0 +1,91 @@
1
+ lucidscan/__init__.py,sha256=DpuMUG4sk5lHvADvcwORptcsKCgcqGCnIpkRjpIsyrY,220
2
+ lucidscan/bootstrap/__init__.py,sha256=_kfHqNrVBqwd187I_7mHxv5-YyAtdB74JBfu1WACFO0,749
3
+ lucidscan/bootstrap/paths.py,sha256=wEGEAsv8NuO9vaAIezcCsJe7PqG2NXeYMyti1vCTTEw,4967
4
+ lucidscan/bootstrap/platform.py,sha256=Ea3PpsKTTwIj3-rH50ixu-zLQLSNNTjVyo360H9jPsI,2760
5
+ lucidscan/bootstrap/validation.py,sha256=d0hJmbhkL-sy6i1kCxUJni7ki1uIQN8rchK4ya0Erbw,2035
6
+ lucidscan/bootstrap/versions.py,sha256=_mfH8kSj-EgWTyOQghAEv-YZNF1Z9su_MysfuBGZdS4,3365
7
+ lucidscan/cli/__init__.py,sha256=lGfxcv8NLr1z55mg41kNjzGhn8Dp2prfKzXccwwX-EU,1033
8
+ lucidscan/cli/__main__.py,sha256=XxHBoQHCFgE1Mh2sduMGR52nU5H_uU9JQhIuBg4Hq2w,182
9
+ lucidscan/cli/arguments.py,sha256=Ch53AF4-4NR5Xul8l5WXV9KIDRn7bBqlQxo2a3obDpE,12781
10
+ lucidscan/cli/config_bridge.py,sha256=TRk3YHmnYp387JZY-uHWCVWPWRtIIk2bZ9dQgIGFQio,5369
11
+ lucidscan/cli/exit_codes.py,sha256=AFj5P8mvXF5epcQBEVlUxNjc-XWjx1arLi0uPWnhbzc,455
12
+ lucidscan/cli/runner.py,sha256=fZXDkYB39S0yC6Eg4MNqxQaPxfib8iusPLHe-h_0flg,8907
13
+ lucidscan/cli/commands/__init__.py,sha256=uJyTlzRMol6hLWG4blb3MGCJqJlFPMqWVHQK7FSEDEo,1665
14
+ lucidscan/cli/commands/autoconfigure.py,sha256=vpdQ6WH_uHSzEDbkyp41ZkUrcMWS2RV-C4SOqxrMP7k,9864
15
+ lucidscan/cli/commands/help.py,sha256=wmlw_4OEft02h-j06lAm1Qggft2cqMK1rPUXC3SPNpY,1941
16
+ lucidscan/cli/commands/init.py,sha256=ZkwE-zw8qR1TfBuk5SCVzfOSwuL6dX29SgQ3hwLoZkM,21403
17
+ lucidscan/cli/commands/list_scanners.py,sha256=QUtNDOZSU-cWdGOD6TIRiFNqnNwyZ2bXOxXFwbUl4wQ,1885
18
+ lucidscan/cli/commands/scan.py,sha256=SUAVXCDlM3BWdb7m6Jlqe1u8B2ygwCzP2yyqt-lYdBM,11500
19
+ lucidscan/cli/commands/serve.py,sha256=I97f80qdAD2k4PzdvlRikkPJMP610Or4WDH2dbJd8iQ,4294
20
+ lucidscan/cli/commands/status.py,sha256=Bqjvd71oQRz02UK9bYE5UKmViA1yBRsWmsi40Fdrdz0,2844
21
+ lucidscan/cli/commands/validate.py,sha256=yHfBTep1nAqrAjkc-PtkImdRjl6kpVbrUWFoOpu0dX0,3259
22
+ lucidscan/config/__init__.py,sha256=_jtdQW0eokP3wdlC2ma7uqB0ft5Nb691932svvNQFM0,819
23
+ lucidscan/config/ignore.py,sha256=hNDtFpAtfM3hNmsUVUqaWz6BIs1m4sEb7NibKFKjLh0,5023
24
+ lucidscan/config/loader.py,sha256=iNqvkH4btODGYZujLmlycTKEh9BYJWIZCg3ZRrC5mwU,13170
25
+ lucidscan/config/models.py,sha256=JOKTIX7GxZusW87FshkLtsOmyaXd-vvoZ4oPW4uZkGs,10266
26
+ lucidscan/config/validation.py,sha256=EYoiK8MjhPZl6iIc-M9udHWy4B64NfC1U6FFdgOkDzw,23518
27
+ lucidscan/core/__init__.py,sha256=iS8dpS--r1wbViuXUCzmrQQ_4n9KwdZXzP4WP_IFtp8,61
28
+ lucidscan/core/domain_runner.py,sha256=Xzvnvh3F0ooWfwyEdE7j4EjFns_2HLt_3GRmC5F-sQg,14018
29
+ lucidscan/core/git.py,sha256=UrRRXdjHkNPd2jzXzPAeiFKrwz61HDQLOrJ3C_tg14I,5329
30
+ lucidscan/core/logging.py,sha256=JMLsSA75WyGZ6WMT1brXBh7OcAt3FSMAJgHiEeZ6ROM,806
31
+ lucidscan/core/models.py,sha256=scS2--gwpdP09ILZu302CoIGc_38pN7V34qgLcBeBqc,5891
32
+ lucidscan/core/streaming.py,sha256=-ze0rAx3oOllioQYMduLNafpI1hgq49Z6eAhen7c1g8,9944
33
+ lucidscan/core/subprocess_runner.py,sha256=Y6WfP6pgOVSYh-1RLFvkB0Wpjoxf15j_RV_5ZvunQAM,5658
34
+ lucidscan/detection/__init__.py,sha256=w98ma9jgtqV0YsbsKlQQG-2nWDAsDp8MLEqRkGskiDI,535
35
+ lucidscan/detection/detector.py,sha256=Uw5myD53gjsTZ6RPUnvhzNUr8FoSPn6i1JkC09VJ2a8,5224
36
+ lucidscan/detection/frameworks.py,sha256=d6EI5DG1bcXNB9Mbul1aThQ9cM58CN2adevUqOxk2BQ,7631
37
+ lucidscan/detection/languages.py,sha256=H27uQSAG2qln0kZjMwqz_0KAJXv2n1Ge0QRYE22xUQA,9427
38
+ lucidscan/detection/tools.py,sha256=y-7tcP73LWHPCNFRz8UoJ0h4LOsLuz-wMsEqE_g73HI,6533
39
+ lucidscan/generation/__init__.py,sha256=oJysVRWTeJTOCDJ_L36EJXyxFoITFt7Gr0mG-yPuOmU,379
40
+ lucidscan/generation/config_generator.py,sha256=eeUsNzuANN7YV4Hy_N_99e_6XMzZU_B9mjSH5J2mjJY,7789
41
+ lucidscan/generation/package_installer.py,sha256=hS5gf_SD6pl_UujeUoHrP66AT1NvpvUBZC3_DLx4TkY,10999
42
+ lucidscan/mcp/__init__.py,sha256=180Uwg_W3f5mMYHmqRjkrJiLEAvbFoe1z0MWE9UbxKM,615
43
+ lucidscan/mcp/formatter.py,sha256=_GQJd0ug5SRbo3ZWoEXz8QTVgTVsTkchWYSIrEsSx3A,17442
44
+ lucidscan/mcp/server.py,sha256=0Qw9uyeZzTQ5IlSyJH7LYJDIM9tK71dfyGf_H_ERUgc,13032
45
+ lucidscan/mcp/tools.py,sha256=sFCmBu_f5ijUkK_ywb5AjrPMteMAQqjZ4fb9uSKkBcs,39578
46
+ lucidscan/mcp/watcher.py,sha256=i7IEvq46Q8wZkLSRK-MexqUSEUl-JeQXD0xCaMQRTX4,6952
47
+ lucidscan/pipeline/__init__.py,sha256=zGAG-O-LAXeP-4ibhEVGLrBR3Tk5Xq83Obb3UCTVFRE,503
48
+ lucidscan/pipeline/executor.py,sha256=6Zp3Zum1yx9Rcp9xBBuBjeJ-vsHLAnRxrFVSSpUKuXE,6143
49
+ lucidscan/pipeline/parallel.py,sha256=JgEdopfPmBleaeUQ5DsHtdwtzRLV-cRrTCZDfNBSlhU,5953
50
+ lucidscan/plugins/__init__.py,sha256=7sqeP6UC9Mp53NNc8_mfLxNZLLZwpqKdxU7mZN3dG6o,1277
51
+ lucidscan/plugins/discovery.py,sha256=8oSjtdwpXsbdYqXM4XEjMgttsAiAx4e_im-f4Tv4eGI,3290
52
+ lucidscan/plugins/coverage/__init__.py,sha256=7nYYUBIjdQl8o_RH-sxVAuQX9qvYNlieGAFwLvuIoLc,733
53
+ lucidscan/plugins/coverage/base.py,sha256=GIE6xADpusem95YUMdZayJYMQ1VZzc5QgTPS093Lkzk,4393
54
+ lucidscan/plugins/coverage/coverage_py.py,sha256=0N1UQ3HsSUce-_IiUvmMS3KwSF3dYSLjg5P_YWFCmLM,14975
55
+ lucidscan/plugins/coverage/istanbul.py,sha256=F2iN-sW20l1Z-NXN1jIzTdDQFz4pxpg8plXDyBOzrZ0,13221
56
+ lucidscan/plugins/enrichers/__init__.py,sha256=Txtmim-PBH-BJBxA9f7-iOnuxnORZ-IWh1E1pGci0tY,1705
57
+ lucidscan/plugins/enrichers/base.py,sha256=KnZPonu_8niatb4wKiNlRWck9okRCgTS4zjoiKUvt7k,2039
58
+ lucidscan/plugins/linters/__init__.py,sha256=ptAjbOSi7tOenMdUI4QBgA_bGmSrw25Pi_2uownIz3g,621
59
+ lucidscan/plugins/linters/base.py,sha256=JHEG4z3uJNAGW2Fxk-Y7PbN8lvJMeG0Axdjv19aEntg,3258
60
+ lucidscan/plugins/linters/biome.py,sha256=k411irgzDDB5tI9iuiQHy7KZ4vC6znLOs4NCkAk1Gx4,13651
61
+ lucidscan/plugins/linters/checkstyle.py,sha256=zL53zI6CaBgEV1MP3PAvPbXzEq_rdnELmVT-c8fiT4Q,11964
62
+ lucidscan/plugins/linters/eslint.py,sha256=PMjmbhgZVCot21jULS9Xlz6K0A-v4mVrjcl_a9l3dpA,10630
63
+ lucidscan/plugins/linters/ruff.py,sha256=rgI_zS7qJBYtSSfHDgx9rE0D1tzvioxJWq-S9UY0qqc,16072
64
+ lucidscan/plugins/reporters/__init__.py,sha256=0KbwN9xTvlG_XSByn9zzuCUudhh5N-VPufSF7BEnwtQ,1459
65
+ lucidscan/plugins/reporters/base.py,sha256=zLhOl5VnlWuMBSoVNxm1kuJObj7vxhU1qLRuC0G4Qto,828
66
+ lucidscan/plugins/reporters/json_reporter.py,sha256=KxKfVvOlcom1UWxRTYP3AyYX8-aM0dU0tFsFFH5dKBU,2685
67
+ lucidscan/plugins/reporters/sarif_reporter.py,sha256=hg4TU1rBRijDHMYk3htLrua9nzmbEOZvGEz54Ipoxtw,9748
68
+ lucidscan/plugins/reporters/summary_reporter.py,sha256=BNUyYpQfcF9e5gb8H68ppZDEfxHAfMkEAgUdcLYGKGI,1986
69
+ lucidscan/plugins/reporters/table_reporter.py,sha256=L8gtiNBCkBbJGTMcf-d87lYinM4Iuuc5yHr8ayDsJio,2601
70
+ lucidscan/plugins/scanners/__init__.py,sha256=Eq_KFR9ZILBj-yUpInDmIHOiMhf2ZwTVWrQMyAGF0FU,1782
71
+ lucidscan/plugins/scanners/base.py,sha256=nnAsq3Joa7fCqT5g9C4z6bJrHtbR-pnNYiJkbuN37-M,1695
72
+ lucidscan/plugins/scanners/checkov.py,sha256=A2y6l0CqdAVMysPS8mhSJsbTPZJL_hfpiI7KKMe98JM,16825
73
+ lucidscan/plugins/scanners/opengrep.py,sha256=RhcOxOPkNN5bx51j0BKZmhkug9q9P1hEWW8TeM7V6Gc,16227
74
+ lucidscan/plugins/scanners/trivy.py,sha256=xrJ_wXONDIWd8GY9fQ-KVxEmSvUSGuWYLfssA1OjpVw,17586
75
+ lucidscan/plugins/test_runners/__init__.py,sha256=1hJFpQqtCjLOPZYYcAcfsWVgUi1YsbhcGh6OaBLgOG0,713
76
+ lucidscan/plugins/test_runners/base.py,sha256=E7IjhZzD2HekFPiQUM2CCdCEOO37PWPJuhkj6LIsqP4,2944
77
+ lucidscan/plugins/test_runners/jest.py,sha256=1di7MnoEIFLv-xGEzgffm-Rd1Sf3d6F2Dig5Baj8UtI,11951
78
+ lucidscan/plugins/test_runners/karma.py,sha256=wNCr3U0MHHnBUgyeaNHJLQY2LsRexU7qWMg-7oeMI2E,14764
79
+ lucidscan/plugins/test_runners/playwright.py,sha256=j6FUHKoxEiatjtkrxH-xzcI5U7gIMfFyDi_A76PqSjQ,13463
80
+ lucidscan/plugins/test_runners/pytest.py,sha256=eDcM2OcoB8fqxgDiBddAK3tyAJtdGrf3VOOV_3mzTkw,19467
81
+ lucidscan/plugins/type_checkers/__init__.py,sha256=Nq56oPOgafbMF76yQcrtQLuvbleS0P1FuTCqlBtX87M,736
82
+ lucidscan/plugins/type_checkers/base.py,sha256=ILH6ZqEb1eErkdXK-tlqiBBatU3cwgD2S5VrmSUQH4I,2758
83
+ lucidscan/plugins/type_checkers/mypy.py,sha256=CTMo7y-ZHqylb07zd9ywWkVyd4xFCYAMFsD2JIEStuk,10693
84
+ lucidscan/plugins/type_checkers/pyright.py,sha256=f9dxFMA2pBEKOsBbw-IDamyt17aqsaHWWmk_wQZv_VQ,9421
85
+ lucidscan/plugins/type_checkers/typescript.py,sha256=zA_gvosk-yfVzWG9c2nK4cJY2F_wk7U-1u704K1qieE,8170
86
+ lucidscan-0.5.12.dist-info/licenses/LICENSE,sha256=Rk8TkW9DoGbCku6y8YG2-MxCAT9mqaqQNZNZhVsaTZ8,11366
87
+ lucidscan-0.5.12.dist-info/METADATA,sha256=orQy9ZlkK4dGlUBDlWEVII5reZINNIcUJ3HxtjixtJg,6940
88
+ lucidscan-0.5.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
89
+ lucidscan-0.5.12.dist-info/entry_points.txt,sha256=lB4VthB8R9YidwDx5r9ZCxCamG9yAR9_Ph1BOPzdWtk,1423
90
+ lucidscan-0.5.12.dist-info/top_level.txt,sha256=6p83YY3SjOWWLzeG9FRP2WNMSGJH8WzduSFwwIT1g_0,10
91
+ lucidscan-0.5.12.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,34 @@
1
+ [console_scripts]
2
+ lucidscan = lucidscan.cli:main
3
+
4
+ [lucidscan.coverage]
5
+ coverage_py = lucidscan.plugins.coverage.coverage_py:CoveragePyPlugin
6
+ istanbul = lucidscan.plugins.coverage.istanbul:IstanbulPlugin
7
+
8
+ [lucidscan.linters]
9
+ biome = lucidscan.plugins.linters.biome:BiomeLinter
10
+ checkstyle = lucidscan.plugins.linters.checkstyle:CheckstyleLinter
11
+ eslint = lucidscan.plugins.linters.eslint:ESLintLinter
12
+ ruff = lucidscan.plugins.linters.ruff:RuffLinter
13
+
14
+ [lucidscan.reporters]
15
+ json = lucidscan.plugins.reporters.json_reporter:JSONReporter
16
+ sarif = lucidscan.plugins.reporters.sarif_reporter:SARIFReporter
17
+ summary = lucidscan.plugins.reporters.summary_reporter:SummaryReporter
18
+ table = lucidscan.plugins.reporters.table_reporter:TableReporter
19
+
20
+ [lucidscan.scanners]
21
+ checkov = lucidscan.plugins.scanners.checkov:CheckovScanner
22
+ opengrep = lucidscan.plugins.scanners.opengrep:OpenGrepScanner
23
+ trivy = lucidscan.plugins.scanners.trivy:TrivyScanner
24
+
25
+ [lucidscan.test_runners]
26
+ jest = lucidscan.plugins.test_runners.jest:JestRunner
27
+ karma = lucidscan.plugins.test_runners.karma:KarmaRunner
28
+ playwright = lucidscan.plugins.test_runners.playwright:PlaywrightRunner
29
+ pytest = lucidscan.plugins.test_runners.pytest:PytestRunner
30
+
31
+ [lucidscan.type_checkers]
32
+ mypy = lucidscan.plugins.type_checkers.mypy:MypyChecker
33
+ pyright = lucidscan.plugins.type_checkers.pyright:PyrightChecker
34
+ typescript = lucidscan.plugins.type_checkers.typescript:TypeScriptChecker
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2025 Voldeq GmbH, Zollikofen, Switzerland
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1 @@
1
+ lucidscan