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
- Host: GitHub
- URL: https://github.com/lki/pylint_topology
- Owner: LKI
- License: gpl-2.0
- Created: 2018-08-25T14:44:38.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-07-26T03:16:02.000Z (almost 2 years ago)
- Last Synced: 2025-02-27T13:33:51.721Z (3 months ago)
- Topics: linter-plugin, pylint, topological-data-analysis, topology
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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