Skip to main content

Flake8 plugin to check that every TODO, FIXME, QQ etc comment has a valid JIRA ID next to it.

Project description

Flake8 JIRA TODO Checker

CircleCI PyPI PyPI PyPI PyPI

Flake8 plugin to check that:

  1. Every TODO comment has a JIRA ID next to it.
  2. Every JIRA ID refers to a JIRA issue which is not closed.
  3. All "TODO" comments use the word "TODO" ("FIXME", "QQ", etc are not allowed).

In other words, this is valid as long as the JIRA issue ABC-123 is not closed:

def hacky_function():
    # TODO ABC-123 Stop reticulating splines
    ...

However, none of these comments would be valid:

def hacky_function():
    # TODO No JIRA issue is attached here
    # TODO ABC-9182 Not valid if this JIRA issue is resolved!
    # TODO FIXME You can't use this word to denote a TODO
    ...

You can choose to run this project without connectivity to JIRA, in which case it will only check that every TODO has an issue attached from the correct project.

Configuration

jira-project-ids

A list of valid JIRA project IDs can be provided via the flag --jira-project-ids or via the key jira-project-ids in a flake8 configuration file, e.g.

jira-project-ids = ABC,DEF

If no project IDs are provided then all TODOs will be rejected.

todo-synonyms

A list of words which will be treated like TODO can be provided via the flags --allowed-todo-synonyms and --disallowed-todo-synonyms or via the key allowed-todo-synonyms and disallowed-todo-synonyms in a flake8 configuration file.

disallowed-todo-synonyms will raise an error whenever found in the codebase, and allowed-todo-synonyms will raise an error only if it's missing a JIRA card or that JIRA card is invalid.

Defaults to:

allowed-todo-synonyms = TODO
disallowed-todo-synonyms = FIXME,QQ

jira-server

The URL of the JIRA server, if unset the status of JIRA cards won't be checked.

disallowed-jira-statuses, disallowed-jira-resolutions, and disallow-all-jira-resolutions

If a TODO is attached to a JIRA issue whose status is in disallowed-jira-statuses then an error will be reported, ditto if the JIRA card has a resolution in disallowed-jira-resolutions. If disallow-all-jira-resolutions is set to True, then report an error if issue has any resolution.

Defaults to:

disallowed-jira-statuses = Done
disallow-all-jira-resolutions = True

JIRA Authentication

We support the same authentication methods as the jira-python library.

For cookie-based username/password authentication, use the following configuration parameters:

  1. jira-cookie-username
  2. jira-cookie-password

For HTTP Basic username/password authentication, use the following configuration parameters:

  1. jira-http-basic-username
  2. jira-http-basic-password

For JIRA cloud set jira-http-basic-username to your email address and jira-http-basic-password to your API token.

For OAuth authentication, use the following configuration parameters:

  1. jira-oauth-access-token
  2. jira-oauth-access-token-secret
  3. jira-oauth-consumer-key
  4. jira-oauth-key-cert-file

For kerberos authentication, set the jira-kerberos configuration parameter to True.

Alternatives

This project is heavily inspired by the Softwire TODO checker.

Licence

GNU General Public License v3 or later (GPLv3+)

Development Setup

  1. Install pyenv
  2. Install poetry
  3. poetry install

Releasing

  1. poetry run bump2version minor
  2. git push && git push --tags
  3. tox -e pypi

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

flake8-jira-todo-checker-0.6.1.tar.gz (20.3 kB view hashes)

Uploaded Source

Built Distribution

flake8_jira_todo_checker-0.6.1-py3-none-any.whl (19.9 kB view hashes)

Uploaded Python 3

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