Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 projects

Usage: undead [OPTIONS] [PATHS]...

Arguments:
[PATHS]... paths in which to recursively search for dead files

Options:
-I, --ignore-paths paths to ignore when searching for dead files
-h, --help Print help
-V, --version Print version

```