Orange County Lettings uses flake8 (version 3.7.0) to enforce consistent code style across the project. Running flake8 before committing helps catch style violations early and keeps the codebase readable.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/OpenClassrooms-Student-Center/Python-OC-Lettings-FR/llms.txt
Use this file to discover all available pages before exploring further.
Run flake8
Configuration
flake8 is configured insetup.cfg:
| Option | Description |
|---|---|
max-line-length = 99 | Lines longer than 99 characters are flagged as violations |
exclude = **/migrations/*,venv | Migration directories and the venv/ folder are skipped entirely |
venv/ folder is excluded because it contains third-party packages outside the project’s control.