Skip to main content

Package for running linters, static type checkers and code analysis tools on python code in quarto (.qmd) files.

Project description

lintquarto

Project info: Code licence DOI ORCID All Contributors pyOpenSci Peer-Reviewed
Installation: PyPI Anaconda-Server Badge
Metrics: PyPI downloads PyPI downloads PyPI downloads Conda Downloads GitHub Repo stars GitHub forks GitHub last commit GitHub Release Date
Build & quality status: Project Status: Active – The project has reached a stable, usable state and is being actively developed. codecov Tests Docs Lint Code style: Ruff
Supported platforms: Python 3.10|3.11|3.12|3.13 OS

Package for running linters, static type checkers and code analysis tools on python code in quarto (.qmd) files.

By default, python code validation tools can't check embedded python code in Quarto files. This package fills that gap, enabling analysts and researchers to run python quality checks within Quarto documents.

Currently supported:

Click to view docs

This package is featured on awesome-quarto.

This package has been reviewed by PyOpenSci.

Linting illustration


Installation

You can install lintquarto with pip (from PyPI or GitHub) or conda (from conda-forge).

Install with pip

pip install lintquarto

To include your selection of linters, install them as needed.

For a one-step installation that includes lintquarto and all supported linters and type checkers, use:

pip install lintquarto[all]

Install with uv

uv add lintquarto

Or to include all supported linters and type checkers:

uv add "lintquarto[all]"

Install with conda

conda install conda-forge::lintquarto

With conda, only the main lintquarto tool is installed. If you want to use any linters or type checkers, you must install them separately (either with conda or pip, depending on availability).

Development version

To install the latest development version of lintquarto directly from this repository:

pip install git+https://github.com/lintquarto/lintquarto

If you also want all supported linters and type checkers in one step, install from a local clone in editable mode with the all extra:

git clone https://github.com/lintquarto/lintquarto.git
cd lintquarto
pip install -e ".[all]"

Getting started using lintquarto

Usage

Usage:

lintquarto [-h] [-l LINTER [LINTER ...]] [-f FORMATTER [FORMATTER ...]] [-p PATHS [PATHS ...]] [-e [[exclude_paths] ...]] [-n] [-v] [-k] [-c COMMAND] {list} ...

Lint Python code in Quarto (.qmd) files. Configuration can also be provided in pyproject.toml under [tool.lintquarto]. CLI arguments override configuration file. WARNING: Formatter option currently in alpha, with known bugs and further testing required. If you run into any problems, feel free to open a GitHub issue and contribute to code if you'd like to!

Options:

  • -h, --help - show this help message and exit
  • -l, --linters LINTER [LINTER ...] - Linters to run. Valid options: ['basedpyright', 'flake8', 'mypy', 'pycodestyle', 'pydoclint', 'pyflakes', 'pylint', 'pyright', 'pyrefly', 'pytype', 'radon-cc', 'radon-mi', 'radon-raw', 'radon-hal', 'ruff', 'vulture']
  • -f, --formatters FORMATTER [FORMATTER ...] - Formatter to run. Valid options: ['ruff-format', 'ruff-check-fix'].
  • -p, --paths PATHS [PATHS ...] - Quarto files and/or directories to lint.
  • -e, --exclude [[exclude_paths] ...] - Files and/or directories to exclude from linting.
  • -n, --lint-non-exec - Also lint non-executable Python code chunks
  • -v, --verbose - Verbose output.
  • -k, --keep-temp - Keep temporary .py files after linting.
  • -c, --custom-commands COMMAND - Custom command to run against the generated .py file. Repeat for multiple commands. Example: --custom- commands "mytool"

Commands:

  • list - List supported linters and whether they are available.

Passing extra arguments directly to linters is not supported. Only .qmd files are processed.

Configuration file

As an alternative to passing flags on every run, you can declare your settings once in a [tool.lintquarto] section in your pyproject.toml. The arguments are eqvuialent to those used on the command line. For example:

[tool.lintquarto]
linters = [
  "ruff",
  "pycodestyle",
]
paths = [
  "examples/",
  "dashboard/index.qmd",
]
lint-non-exec = false

With this in place, you can run lintquarto with no arguments.

Note: CLI flags will always take priority over pyproject.toml. If you supply -l or -p on the command line, those values are used and the corresponding config file values are ignored. exclude and custom-commands are additive - values from both sources are merged together.

Examples

The linter used is interchangeable in these examples.

Lint all .qmd files in the current directory (using pylint):

lintquarto -l pylint -p .

Lint several specific files (using pylint and flake8):

lintquarto -l pylint flake8 -p file1.qmd file2.qmd

Keep temporary .py files after linting (with pylint)

lintquarto -l pylint -p . -k

Lint all files in current directory (using ruff):

  • Excluding folders examples/ and ignore/, or-
  • Excluding a specific file analysis/test.qmd.
lintquarto -l ruff -p . -e examples ignore
lintquarto -l ruff -p . -e analysis/test.qmd

Find out more

Visit our website to find out more and see examples from running with each code validation tool.

Click to view docs


Community

Thanks goes to these wonderful people (emoji key):

Amy Heather
Amy Heather

🎨 📖 🤔 🚇 🚧 ⚠️ 🐛 💻
Isabel Zimmerman
Isabel Zimmerman

🤔 📖
Jacob Cumming
Jacob Cumming

🐛 📖 🤔 ⚠️ 💻
Jonny Saunders
Jonny Saunders

🐛 💻 🤔
Sammi Rosser
Sammi Rosser

💻 📖 ⚠️
Anna Laws
Anna Laws

📖
Nissim Lebovits
Nissim Lebovits

🤔
Tom Monks
Tom Monks

📖

This project follows the all-contributors specification. Contributions of any kind welcome!

Curious about contributing? Check out the contributing guidelines to learn how you can help. Every bit of help counts, and your contribution - no matter how minor - is highly valued.


How to cite lintquarto

Please cite the repository on GitHub, PyPI, conda and/or Zenodo:

Heather, A. (2026). lintquarto (v0.13.0). https://github.com/lintquarto/lintquarto.

Heather, A. (2026). lintquarto (v0.13.0). https://pypi.org/project/lintquarto/.

Heather, A. (2026). lintquarto (v0.13.0). https://anaconda.org/conda-forge/lintquarto.

Heather, A. (2026). lintquarto (v0.13.0). https://doi.org/10.5281/zenodo.15731161.

Citation instructions are also provided in CITATION.cff.


Acknowledgements

This project was written and maintained by hand, with occasional use of Perplexity AI during development (specific models and versions varied over time).

AI assistance was used for small, targeted tasks (e.g. help when troubleshooting, identifying issues, refining docstrings, improving code structure), rather than to generate complete functions or substantial content.

All code and design decisions were reviewed and finalised by a human. For transparency, the use of AI is acknowledged, but the project should not be considered AI‑generated.

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

lintquarto-0.13.0.tar.gz (36.2 kB view details)

Uploaded Source

Built Distribution

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

lintquarto-0.13.0-py3-none-any.whl (39.3 kB view details)

Uploaded Python 3

File details

Details for the file lintquarto-0.13.0.tar.gz.

File metadata

  • Download URL: lintquarto-0.13.0.tar.gz
  • Upload date:
  • Size: 36.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lintquarto-0.13.0.tar.gz
Algorithm Hash digest
SHA256 8389695f226a35d98215e5f9b49e4738ab3af3872c80afbfacbc16b98903bed0
MD5 a992d4464a702008db2af80061da785d
BLAKE2b-256 9c0cc8c114dedf48a908086589336a13845c9667594194ec45fce941fa170d21

See more details on using hashes here.

Provenance

The following attestation bundles were made for lintquarto-0.13.0.tar.gz:

Publisher: build-publish.yaml on lintquarto/lintquarto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lintquarto-0.13.0-py3-none-any.whl.

File metadata

  • Download URL: lintquarto-0.13.0-py3-none-any.whl
  • Upload date:
  • Size: 39.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lintquarto-0.13.0-py3-none-any.whl
Algorithm Hash digest
SHA256 089c48a92fc81bcc224414a77c0d64174816d2199498797139cb506e2cdeb2b9
MD5 dfbde7024d8262a6cbc65bc2f4e8fff6
BLAKE2b-256 3b4ab3be513fba8e3aa49b37b787e7d92b9ed4de29d7b113320d012c3e0d2431

See more details on using hashes here.

Provenance

The following attestation bundles were made for lintquarto-0.13.0-py3-none-any.whl:

Publisher: build-publish.yaml on lintquarto/lintquarto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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