Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexpasmantier/undead
A tool to search for dead code in Python projects
https://github.com/alexpasmantier/undead
ast cli dead-code linter parsing python rust tool
Last synced: about 1 month ago
JSON representation
A tool to search for dead code in Python projects
- Host: GitHub
- URL: https://github.com/alexpasmantier/undead
- Owner: alexpasmantier
- Created: 2024-07-14T21:17:13.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-15T07:53:20.000Z (4 months ago)
- Last Synced: 2024-09-17T10:03:57.389Z (about 2 months ago)
- Topics: ast, cli, dead-code, linter, parsing, python, rust, tool
- Language: Rust
- Homepage: https://crates.io/crates/undead
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Undead
A tool to search for dead code in your Python projects.
## Installation
### Using Cargo
```bash
$ cargo install undead
```## Usage
```sh
$ undead . -I "tests"
```## Documentation
```sh
$ undead --help
``````plaintext
A tool to search for dead code in your Python projectsUsage: undead [OPTIONS] [PATHS]...
Arguments:
[PATHS]... paths in which to recursively search for dead filesOptions:
-I, --ignore-paths paths to ignore when searching for dead files
-h, --help Print help
-V, --version Print version```