Skip to main content

CLI tool for managing linting, formatting and testing

Project description

Tidy CLI Logo

Keep your code clean and robust!

Python Versions GitHub PyPI Latest Release License - MIT Gmail LinkedIn


Platforms

Mac OS Linux Windows WSL


Tidy CLI simplifies your development process by combining essential tools like ruff, mypy, pydoclint, and pytest into a single, easy-to-use command-line interface. Perfect for maintaining code quality and running tests across Python projects of any size.

📚 Documentation

For a detailed documenation, please visit this link. But if you are rushing, just keep reading this short overview!

✨ Key Features

  • 🔧 Unified Linting: Combines ruff, mypy, and pydoclint in one command
  • 🎨 Smart Formatting: Automatic code formatting with ruff
  • 🧪 Integrated Testing: Run pytest with coverage reporting
  • ⚡ Auto-fix: Automatically fix linting issues where possible
  • 🔄 Interactive Mode: Review and apply fixes interactively
  • 📊 Flexible Execution: Target specific files, directories, or entire projects
  • ⚙️ Configurable: Skip tools, customize paths, and adapt to your workflow

🚀 Installation

With pip

# Using pip
pip install tidy-cli

With uv (recommended)

uv pip install tidy-cli
uv add tidy-cli

Requirements

  • Python 3.10+
  • Works on Linux, macOS, and Windows (WSL only)

Note: On Windows, tidy-cli requires WSL (Windows Subsystem for Linux) for proper Unicode and terminal support. Native Windows is not currently supported.

🏃 Quick Start

1. Get a Feeling

# See what you are dealing with
tidy-cli
# Deep dive on what you are dealing with
tidy-cli --help
# Install auto-completion for easier usage
tidy-cli --install-completion
# Set up tidy-cli for your project
tidy-cli init

The settings are about:

  • The Pytest folder path, just type . if no chdir is made when running tests.
  • The location of the pyproject.toml file relative to the Pytest folder path.
  • The default path to lint if no other path is passed (e.g., src if one wants to lint the entire src folder as default).
  • The path to the pyproject.toml relative to the cwd when running the lint commands.

2. Run Code Quality Checks

# Lint your entire project (i.e., on the default lint path)
tidy-cli lint run

# Auto-fix (fixable) issues
tidy-cli lint run --fix

3. Run Tests

# Run all tests with coverage
tidy-cli pytest run

That's it! Tidy CLI will handle the rest.

📖 Usage Guide

Code Quality & Linting Commands

# Run all linters (ruff, mypy, pydoclint)
tidy-cli lint run

# Target specific files or directories (relative to the default path/folder)
tidy-cli lint run src/my_module
tidy-cli lint run my_module/file.py # if src has been chosen as default path/folder

# Interactive mode (i.e., you are prompted if to run a specific linter/formatter/checker)
tidy-cli lint run --interactive

# Auto-fix issues where possible
tidy-cli lint run --fix

# Skip specific linters
tidy-cli lint run --skip-mypy
tidy-cli lint run --skip-pydoclint

# Override default directory and config at runtime
tidy-cli lint run --default-dir custom_src
tidy-cli lint run --pyproject-path custom/pyproject.toml

Testing Commands

# Run all tests with coverage
tidy-cli pytest run

# Run specific test files
tidy-cli pytest run tests/test_example.py

# Show detailed test output on a path (logs can be displayed only on path runs)
tidy-cli pytest run tests/test_example.py --logs

# Pass extra pytest options (with --extra -s or -e -s logs can be displayed at any level)
tidy-cli pytest run --extra -v --extra -s
tidy-cli pytest run tests/test_example.py --extra --tb=short

# Override default directory and config at runtime
tidy-cli pytest run --default-dir custom_tests
tidy-cli pytest run --pyproject-path custom/pyproject.toml

CLI Configuration

# Initialize settings for all tools
tidy-cli init

# Initialize specific tool settings
tidy-cli lint init
tidy-cli pytest init

# Show current version
tidy-cli version

⚙️ Configuration

Tidy CLI stores settings in local/tidy_cli_settings.json with sensible defaults:

{
  "lint_default_path": "src",
  "lint_config_path": "pyproject.toml",
  "pytest_default_path": "tests",
  "pytest_config_path": "pyproject.toml"
}

Tool Configuration

Configure the underlying tools in your pyproject.toml:

[tool.ruff]
lint.select = [
    "I", 
    "E", 
    "F", 
    "W", 
    "C90",
    "N", 
    "D", 
]

[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true

[tool.pydoclint]
style = "sphinx"

[tool.coverage.run]
omit = [
    "tests/*",
]

🤝 Contributing

Contributions are welcome! Here's how to get started:

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/amazing-feature
  3. Make your changes
  4. Run the tests: tidy-cli pytest run
  5. Run the linters: tidy-cli lint run --fix
  6. Commit your changes: git commit -m 'Add amazing feature'
  7. Push to the branch: git push origin feature/amazing-feature
  8. Open a Pull Request

Development Setup

git clone https://github.com/alfredo-cinelli/tidy-cli.git
cd tidy-cli
uv venv .venv --python=3.12
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
uv sync --group dev
uv pip install -e .

📋 Changelog

See CHANGELOG.md for a detailed history of changes.

🐛 Issues & Support

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🙏 Acknowledgments

  • Ruff - Fast Python linter and formatter
  • MyPy - Static type checker
  • Pydoclint - Docstring linter
  • Pytest - Testing framework

Made with ❤️ for the Python community

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tidy_cli-0.1.6.tar.gz (13.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tidy_cli-0.1.6-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

Details for the file tidy_cli-0.1.6.tar.gz.

File metadata

  • Download URL: tidy_cli-0.1.6.tar.gz
  • Upload date:
  • Size: 13.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tidy_cli-0.1.6.tar.gz
Algorithm Hash digest
SHA256 f0d32b4a254b719abfba38742c251fa081589d5175803f5bafc0b2537661a625
MD5 fecbc5d1925a35142dacc6a58a36f326
BLAKE2b-256 12f471d52a0838266b39da6e816ac774f65904186d7997c099f839a9472fb840

See more details on using hashes here.

File details

Details for the file tidy_cli-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: tidy_cli-0.1.6-py3-none-any.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tidy_cli-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 011863e14616f0caf35a8ec0e141454fd86abf064b385db6dc1929aef80ebf58
MD5 bc8696a771626489cc8d65a69b882531
BLAKE2b-256 a3bc4bea22bc5775bf84921b2ab04ccec4456b680aa7f02c943f2b2f9c46e088

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page