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

https://github.com/lki/pylint_topology

Validate your imports under a topological graph
https://github.com/lki/pylint_topology

linter-plugin pylint topological-data-analysis topology

Last synced: 3 months ago
JSON representation

Validate your imports under a topological graph

Awesome Lists containing this project

README

        

# Pylint Topology

Validate your package dependencies as a topological graph.

## Installation

```
pip install pylint-topology
```

## Configure

Add `module-topology` settings to your `.pylintrc`:

```
# List of module names for which are in a certain topology. Module imports should be forwards.
module-topology=
utils,
core,
user,
business,
order,
```

## Usage

```
pylint --load-plugins pylint_topology
```

## License

GPLv2