Skip to content

development-status-allowed (ODOO013)

Preview (since 0.16.2.2) · Related issues · View source

Derived from the odoo linter.

This rule is unstable and in preview. The --preview flag is required for use.

What it does

Checks that the development_status key in an Odoo module's __manifest__.py, if present, is one of the recognized values.

Why is this bad?

An unrecognized development status is usually a typo and won't be understood by tooling that reads the manifest.

Example

{
    "development_status": "Stable",
}

Use instead:

{
    "development_status": "Production/Stable",
}