Metadata-Version: 2.4
Name: clean-architecture-linter-plugin
Version: 1.2.2
Summary: A Pylint plugin for enforcing Clean Architecture principles and Design Patterns.
Author: Antigravity Team
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: pylint>=2.15.0
Requires-Dist: tomli; python_version < "3.11"
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: astroid; extra == "dev"

# pylint-clean-architecture

<p align="center">
  <img src="https://raw.githubusercontent.com/noah-goodrich/pylint-clean-architecture/main/assets/logo-compressed.png" width="300" alt="Clean Architecture Linter Logo">
</p>

A powerful, highly-opinionated Pylint plugin for enforcing **Clean Architecture** (The Onion Architecture) principles in Python projects.

This linter acts as a "GPS" for your codebase, preventing technical debt by strictly enforcing architectural boundaries, dependency rules, and design patterns.

## Features

*   **Layer Boundary Enforcement**: Prevents inner layers (Domain, UseCase) from importing outer layers (Infrastructure, Interface).
*   **Dependency Injection Checks**: Forbids direct instantiation of infrastructure classes in UseCases.
*   **Design Pattern Enforcement**: Detects "naked returns" from repositories, delegation anti-patterns, and more.
*   **Law of Demeter**: Enforces loose coupling by flagging deep method chains.
*   **Contract Integrity**: Ensures Infrastructure classes correctly implement Domain Protocols.
*   **Anti-Bypass Guard**: Prevents "lazy" disabling of linter rules without justification.
## Installation

```bash
pip install pylint-clean-architecture
```

## Usage

Add the plugin to your `pyproject.toml` or Pylint configuration:

```toml
[tool.pylint.main]
load-plugins = ["clean_architecture_linter"]
```

Run Pylint as usual:

```bash
pylint src/
```

## AI Coding Assistant Support

The `clean-arch-init` command generates architectural instructions for AI agents (like Cursor or GitHub Copilot) to prevent "Split Brain" issues by teaching the AI your project's rules before it writes code.

Usage:

```bash
clean-arch-init
```

Outcome: This creates a customized `.agent/instructions.md` file based on the layer names defined in the project's `pyproject.toml`.


## Configuration

The linter is configured via `[tool.clean-arch]` in `pyproject.toml`.

```toml
[tool.clean-arch]
# 1. Project Type Presets (generic, cli_app, fastapi_sqlalchemy)
project_type = "generic"

# 2. Strict Visibility Enforcement
visibility_enforcement = true

# 3. Custom Layer Mapping (Map directory regex patterns to layers)
[tool.clean-arch.layer_map]
"services" = "UseCase"
"infrastructure/clients" = "Infrastructure"
"domain/models" = "Domain"
```

## Rules

See [RULES.md](RULES.md) for a complete catalog of enforced rules and "Clean Fix" examples.

## Contributing

1.  Fork the repo.
2.  Install dependencies: `make install`.
3.  Run tests: `make test`.
4.  Submit a PR.
