Skip to main content

Utility tying multiple code quality tools together

Project description

Multilint (for Python)

Actions Test Workflow Widget PyPI Version Pdoc Documentation

A utility tying together multiple linting and other code quality tools

Intro

Multilint allows running several code quality tools under the same interface. This is convenient as it saves time on writing multiple linter / formatter / checker invocations every time in a project.

Installation

Since there is an existing project called multilint, this Multilint can be installed as pymultilint:

$ pip3 install pymultilint

Usage

Multilint exposes a CLI entry point:

$ multilint [paths ...]

It can optionally take a set of starting paths. There are no CLI options, as Multilint strives to have all of its configuration codified (see Configurability).

Alternatively, Multilint is also usable via its API - either the main method, or the Multilint class.

Supported Tools

Currently, Multilint integrates the following code quality tools:

  • Autoflake - removes unused imports and unused variables as identified by Pyflakes
  • Isort - sorts imports according to specified orders
  • Black - the self-proclaimed "uncompromising code formatter" - formats Python source with an opinionated style
  • Mypy - static type checker for Python
  • Pylint - general best practices linter
  • Pydocstyle - in-source documentation best practices linter
  • Pyupgrade - upgrades Python syntax to the latest for the specified version

Configurability

Additionally, for tools that do not currently support configuration via pyproject.toml(PEP-621), Multilint exposes a configuration interface for them. This allows for centralized codification of configuration of all code quality tools being used in a project.

Example relevant sections from a pyproject.toml:

[tool.autoflake]
recursive = true
in_place = true
ignore_init_module_imports = true
remove_all_unused_imports = true
remove_unused_variables = true
verbose = true
srcs_paths = ["somepackage"]

[tool.mypy]
src_paths = ["someotherpackage"]

[tool.multilint]
tool_order = [
  "autoflake",
  "isort",
  "pyupgrade",
  "black",
  "mypy",
  "pylint",
  "pydocstyle"
]
src_paths = ["."]

At the time of writing of this README (2020-01-31), neither Autoflake nor Mypy support configuration via pyproject.toml. While support for each may or may not be added at some point in the future, with multilint configuring these tools is possible today.

Currently, the only two supported configuration option for Multilint are:

  • tool_order, which defines the execution order of supported tools, and
  • src_paths, which specifies the source paths (can be files and directories) for Multilint to operate on.

Each integrated tool additionally supports src_dirs as an override, in case it is desired to target a specific tool at a different set of files / directories.

Extending Multilint

Support for more tools may be added by subclassing the ToolRunner class and overriding the .run(...) method.

There are some utilities provided, such as:

  • A logger that masquerades as a TextIO object to allow capturing tool output from within and wrapping it with preferred logging
  • A dictionary for tool configuration that is automatically available in the ToolRunner class, as long as the tool is registered in

Documentation about adding support for more tools to Multilint may be added in the future.

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

pymultilint-1.1.0.tar.gz (8.8 kB view details)

Uploaded Source

Built Distribution

pymultilint-1.1.0-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

Details for the file pymultilint-1.1.0.tar.gz.

File metadata

  • Download URL: pymultilint-1.1.0.tar.gz
  • Upload date:
  • Size: 8.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.3 Linux/5.15.0-1038-azure

File hashes

Hashes for pymultilint-1.1.0.tar.gz
Algorithm Hash digest
SHA256 1414fdc861fc7e0e3a22d0491c61b0af427bb5d99d5921b21fa8fea6bf77ff37
MD5 c0b3fdc29679af0d5c950049d2b749fa
BLAKE2b-256 af1d7889ff20466a373d9934de560f924d38eb1d60132182b60095cbab0ed876

See more details on using hashes here.

File details

Details for the file pymultilint-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: pymultilint-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 9.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.3 Linux/5.15.0-1038-azure

File hashes

Hashes for pymultilint-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7ee30214a98b7eb359b184b49938e15f56500b89f6b730637572940285bc20c1
MD5 0648105f2c173e88999f4d2aa0721979
BLAKE2b-256 dee6acd617bc9c6b8faf9fd4825900f6d1559456c3b1c3b1d5a86c9b53b941ce

See more details on using hashes here.

Supported by

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