Lints Python code blocks in Markdown files using flake8
Project description
Flake8 Markdown
Flake8 Markdown lints GitHub-style Python code blocks in Markdown files using flake8
.
This package helps improve a Python project's documentation by ensuring that code samples are error-free.
Installation
Flake8 Markdown can be installed from PyPI using pip
or your package manager of choice:
pip install flake8-markdown
Usage
CLI
You can use Flake8 Markdown as a CLI tool using the flake8-markdown
command.
flake8-markdown
accepts one or more globs as its arguments.
Example:
$ flake8-markdown flake8-markdown "tests/samples/*.md"
tests/samples/emphasized_lines.md:6:1: F821 undefined name 'emphasized_imaginary_function'
tests/samples/basic.md:8:48: E999 SyntaxError: EOL while scanning string literal
tests/samples/basic.md:14:7: F821 undefined name 'undefined_variable'
pre-commit hook
You can also add flake8-markdown
to your project using pre-commit. When configured, any staged Markdown files will be linted using flake8-markdown
once you run git commit
.
To enable this hook in your local repository, add the following repo
to your .pre-commit-config.yaml
file:
# .pre-commit-config.yaml
repos:
- repo: https://github.com/johnfraney/flake8-markdown
rev: v0.1.1
hooks:
- id: flake8-markdown
Code of Conduct
Everyone interacting in the project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the PyPA Code of Conduct.
History
[0.1.1] - 2019-05-19
Changed
- Fixed pre-commit example in README
[0.1.0] - 2019-05-19
Added
- Added code for initial release
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
Built Distribution
Hashes for flake8_markdown-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b07d23352bd674ec302ff14dc5a3891c59b7208e5b72baf5ee79bc9f3345064 |
|
MD5 | 2e66a6bcf5fc78c11afcbbf8434fff86 |
|
BLAKE2b-256 | 30b662ceacb4be4c6e1c05fe52797ff1aca2c76f641119eeb027ec47c1d59916 |