No description
Find a file
2024-04-20 11:10:25 +03:00
tests highlights? 2024-04-20 11:05:58 +03:00
.gitignore oops, did it in one go 2024-04-20 10:55:48 +03:00
flake8_one_dot.py highlights? 2024-04-20 11:05:58 +03:00
MANIFEST.in oops, did it in one go 2024-04-20 10:55:48 +03:00
README.md docs: dropped autogen text wraps 2024-04-20 10:59:53 +03:00
requirements.txt oops, did it in one go 2024-04-20 10:55:48 +03:00
setup.cfg update: version 2024-04-20 11:10:25 +03:00
setup.py oops, did it in one go 2024-04-20 10:55:48 +03:00

Flake8 One Dot Per Line Plugin

flake8-one-dot is a Flake8 plugin that enforces the Object Calisthenics principle of "One Dot Per Line" to promote better encapsulation and minimize the violation of the law of Demeter in Python code. It achieves this by flagging lines that contain multiple attribute accesses, which can indicate a code smell related to excessive knowledge of internal structures.

Installation

Install flake8-one-dot via pip:

pip install flake8-one-dot

Usage

After installation, the plugin will automatically be activated when you run Flake8:

flake8 your_project_directory

Any line with more than one dot will be reported as a violation, prompting a refactoring suggestion to improve encapsulation.

Configuration

flake8-one-dot does not require any specific configurations and works out-of-the-box with the default Flake8 settings.

Rules Enforced

  • FOD100: Too many dots per line (more than one dot found)

This rule helps developers recognize lines of code that may be overly reliant on object internals or chain multiple method calls in ways that could complicate future refactoring and maintenance.

Motivation

The "One Dot Per Line" rule helps maintain clean separation between objects and their internal data, encouraging methods to be short and ensuring that objects interact with each other through well-defined interfaces. This reduces coupling and enhances modularity, making the codebase easier to understand and maintain.

Contributing

We appreciate contributions from the community to make flake8-one-dot more effective or to fix potential bugs. If you have suggestions or want to contribute code, please feel free to fork the repository, make your changes, and submit a pull request.

License

This plugin is distributed under the MIT License. The full license text can be found in the LICENSE file included with the source code.