skylos 1.0.7__tar.gz → 1.0.8__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 skylos might be problematic. Click here for more details.
- {skylos-1.0.7 → skylos-1.0.8}/PKG-INFO +1 -1
- {skylos-1.0.7 → skylos-1.0.8}/README.md +3 -0
- {skylos-1.0.7 → skylos-1.0.8}/pyproject.toml +1 -1
- {skylos-1.0.7 → skylos-1.0.8}/setup.py +1 -1
- {skylos-1.0.7 → skylos-1.0.8}/skylos/__init__.py +1 -1
- {skylos-1.0.7 → skylos-1.0.8}/skylos.egg-info/PKG-INFO +1 -1
- {skylos-1.0.7 → skylos-1.0.8}/setup.cfg +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/skylos/analyzer.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/skylos/cli.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/skylos/visitor.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/skylos.egg-info/SOURCES.txt +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/skylos.egg-info/dependency_links.txt +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/skylos.egg-info/entry_points.txt +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/skylos.egg-info/requires.txt +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/skylos.egg-info/top_level.txt +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/test/__init__.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/test/compare_tools.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/test/diagnostics.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/test/sample_repo/__init__.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/test/sample_repo/app.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/test/sample_repo/sample_repo/__init__.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/test/sample_repo/sample_repo/commands.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/test/sample_repo/sample_repo/models.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/test/sample_repo/sample_repo/routes.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/test/sample_repo/sample_repo/utils.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/test/test_skylos.py +0 -0
- {skylos-1.0.7 → skylos-1.0.8}/test/test_visitor.py +0 -0
|
@@ -171,6 +171,9 @@ A: They test common scenarios but can't cover every edge case. Use them as a gui
|
|
|
171
171
|
**Q: Should I automatically delete everything flagged as unused?**
|
|
172
172
|
A: No. Always review results manually, especially for framework code, APIs, and test utilities.
|
|
173
173
|
|
|
174
|
+
**Q: Why did Ruff underperform?**
|
|
175
|
+
A: Like all other tools, Ruff is focused on detecting specific, surface-level issues. Tools like Vulture and Skylos are built SPECIFICALLY for dead code detection. It is NOT a specialized dead code detector. If your goal is dead code, then ruff is the wrong tool. It is a good tool but it's like using a wrench to hammer a nail. Good tool, wrong purpose.
|
|
176
|
+
|
|
174
177
|
## Limitations
|
|
175
178
|
|
|
176
179
|
- **Dynamic code**: `getattr()`, `globals()`, runtime imports are hard to detect
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|