Skip to main content

types-for-jinja

A mostly invisible type checking and LSP extension for Jinja, JinjaX, and similar templates, built on the pyright, ty, or mypy you already run. Declare a template's context once, in a comment, and types-for-jinja generate writes a line-aligned Python stub for it. Your checker then reports every bad variable and attribute the template touches, at the template's own line, in the same run that checks the rest of your code. In the editor, the same stubs feed your Python language server, so templates get inline diagnostics, completion, and hover without a second toolchain. There is no new template language, Jinja renders unchanged, and nothing runs at render time by default.

The only dependency is jinja2. types-for-jinja never invokes a type checker itself, so template checks run under your checker, your version, and your configuration, including checker plugins such as the mypy pydantic plugin. The "mostly" in invisible is raw CI output naming the stub instead of the template; types-for-jinja remap and the editor mirror close that gap, and "Limitations" lists the rest.

types-for-jinja is deliberately narrow (Jinja2 plus the dialects Jinja's own parser reads). If your needs differ, there are alternatives to consider:

  • TypeJinja type-checks dbt's Jinja against dbt's own IR and ships with the dbt fusion engine, so use it for dbt projects
  • templ (Go), askama (Rust), and Twirl (Scala) compile templates into typed host-language functions, the ergonomic model this project borrows
  • JinjaX adds component syntax to Jinja (the {#def #} header comes from JinjaX) and composes with types-for-jinja rather than replacing it
  • djlint lints and formats template style rather than types, so it runs alongside rather than instead

30-second example

Add a header to a template naming its context:

{#def
from myapp.models import User
user: User
#}
<h1>Hello {{ user.naem }}</h1>
{% for item in user.items %}
  <li>{{ item.titel }}</li>
{% endfor %}

Generate the stubs, then run whichever checker the project already uses:

$ types-for-jinja generate templates/    # or just `generate`, with template_dirs set
types-for-jinja: Wrote 5 file(s) for 1 template(s)
$ ty check
_jinja_stubs/templates/greeting_html.py:5:5: error[unresolved-attribute] Object of type `User` has no attribute `naem`
_jinja_stubs/templates/greeting_html.py:7:9: error[unresolved-attribute] Object of type `Item` has no attribute `titel`
Found 2 diagnostics

Generated line N is template line N, so the line numbers are the template's own. Pipe through remap when you want the template's path and column too:

$ ty check | types-for-jinja remap
templates/greeting.html:5:14: error[unresolved-attribute] Object of type `User` has no attribute `naem`
templates/greeting.html:7:10: error[unresolved-attribute] Object of type `Item` has no attribute `titel`
Found 2 diagnostics

A pipeline hands back the filter's exit code rather than the checker's, so in CI let remap run the checker instead. It exits with the checker's status, and with ty's default format the source excerpt becomes the template's own line:

$ types-for-jinja remap -- ty check
error[unresolved-attribute]: Object of type `User` has no attribute `naem`
 --> templates/greeting.html:5:14
  |
5 | <h1>Hello {{ user.naem }}</h1>
  |              ^^^^^^^^^
  |

remap reads text output from ty, mypy, and pyright, plus pyright --outputjson, mypy --output json, and ty's gitlab and github formats. A path outside the stub tree passes through untouched, so piping a whole-project run leaves the project's own diagnostics exactly as the checker wrote them.

The {#def #} block is a plain Jinja comment, so the template renders exactly as before. The loop variable is narrowed to its element type, so item.titel is caught the same way user.naem is.

A macro takes its own {#def #} block, which types its parameters for both its body and its callers, across files:

{% macro field(label, value) %}
  {#def
  label: str
  value: str
  #}
  <label>{{ label }}</label><span>{{ value }}</span>
{% endmacro %}

Without that block the parameters stay untyped and only arity is checked.

JinjaX writes the whole context on one line, with commas between, defaults allowed, and untyped names allowed. Both spellings parse, and they can be mixed:

{#def action, method: str = "post", count: int = 0 #}

A name with no annotation is Any, so it is declared without being constrained. A default is carried into the generated wrapper's signature, so callers do not have to repeat it.

JinjaX component tags are checked against the component's own header. Point template_dirs at the component directory and a use is validated for missing required attributes and for attribute types:

{#def title: str, count: int = 0 #}   <!-- components/Card.jinja -->

<Card count={{ user.name }} class="wide" />
$ types-for-jinja remap -- ty check
templates/page.html.jinja:6:16: error[missing-argument] No argument provided for required parameter `title`
templates/page.html.jinja:6:7: error[invalid-argument-type] Expected `int`, found `str`

An attribute the component does not declare is not an error, because JinjaX forwards it to the component as attrs, which is what class="wide" above relies on.

A tag an extension adds does not parse until the extension is loaded, and an unparseable template is skipped entirely, so its own errors go unreported too. Declaring the extension is what makes the rest of the template checkable:

[tool.types_for_jinja]
extensions = ["do", "i18n", "loopcontrols"]

i18n also declares the names it injects (_, gettext, ngettext, pgettext, npgettext), so a template using them needs nothing else. Jinja's own globals (namespace, cycler, joiner, lipsum) are declared automatically when a template names one, including the {% set ns.total = ... %} form.

Jinja's built-in filters carry their return type, so a filtered expression is still checked: {{ items | length }} is an int, and {% for x in items | sort %} still knows what x is. Only the return type is pinned, because a filter catalog that guesses at argument types reports errors on correct templates. A filter the catalog does not know (yours, or one from an extension) falls back to Any.

Installation

uv add types-for-jinja      # or: pip install types-for-jinja

That installs jinja2 and nothing else. Bring your own checker: pyright, ty, and mypy are each verified against the generated stubs on every CI run, and anything that reads standard Python annotations should work the same way.

How it works

types-for-jinja generate parses each template with Jinja's own parser and writes a small Python module that exercises every expression the template uses, preserving nesting so your checker's scoping and narrowing mirror Jinja's. {% for item in items %} becomes a real for loop, so the checker infers the element type. The stub tree mirrors the template tree under _jinja_stubs/ (only the filename is mangled, because a module name cannot carry a template extension), and a manifest maps each stub back to its template. Environment globals such as static_url are declared once under [tool.types_for_jinja] in pyproject.toml so they never show up as undefined.

Add _jinja_stubs/ to .gitignore and generate the stubs as a step in pre-commit or CI rather than committing them; a generated tree does not belong in the diff. types-for-jinja generate --check fails when a stub is missing or out of date, and the shipped pre-commit hook runs exactly that check.

If you rename out_dir, keep it clear of a leading dot. Pyright excludes dot-prefixed directories by default, so a hidden stub tree would sit outside every check pyright runs.

Cross-file constructs resolve at generation time: a child checks against its whole {% extends %} chain, an {% include %} body checks against the including template's context, and {% import %}-ed macros carry their own {#def #} types to their callers.

In your editor

The stubs are ordinary workspace Python, so the Python language server you already run flags them with no setup: open the stub and the error is on the same line number as the template. Two layers make that invisible:

  • The types-for-jinja-lsp server (the lsp extra) attaches to template buffers and regenerates the stub as you type, debounced, so your Python checker re-checks it live before you save. It also completes and describes the typed context in the template itself: the names visible at the cursor, the members of their types after a ., built-in filters after | (with return types), tests after is, and tags after {%, plus hover for all of them.
  • A thin mirror republishes the stub's diagnostics onto the template buffer, line for line, so errors appear inline in the template with your checker's own codes. Mirroring has to live in the editor, because one language server cannot read another server's diagnostics. editors/nvim ships it for Neovim. VS Code, Cursor, Zed, and Helix need the same layer against their own diagnostic APIs, and none of that is built.

Attribute completion asks a Python language server what the expression's type offers, taking the first of pyright, basedpyright, ty server, pylsp, or jedi found on PATH. Pin one with [tool.types_for_jinja] language_server if you run several. When none is installed, member completion is simply absent and everything else still works.

Configuration

Everything lives under [tool.types_for_jinja] in pyproject.toml, and every setting has a working default.

Setting Default What it does
globals none Names your Environment.globals injects, as a name = "Type" table, so static_url() is not a false positive
imports none Import lines the generated stubs need to resolve the types named in globals
out_dir _jinja_stubs Where stubs go. Rejected unless every path segment is an identifier, since the stubs import each other relatively
suppression portable Which ignore comment {# type: ignore #} becomes: portable, mypy, pyright, or ty
template_dirs none Where {% extends %}, {% include %}, and {% import %} are resolved from, and what generate searches when given no paths. Accepts package:subdirectory
template_globs *.html, *.jinja, *.j2 Patterns a directory argument is searched for
language_server first found Pins the language server attribute completion asks, instead of taking the first on PATH
extensions none jinja2 extensions to load so their tags parse: debug, do, i18n, loopcontrols
syntax Jinja's own Delimiters, using jinja2.Environment's own keyword names
wrapper see below Options for types-for-jinja wrapper
[tool.types_for_jinja]
imports = ["from collections.abc import Callable"]
template_dirs = ["myapp:templates"]

[tool.types_for_jinja.globals]
static_url = "Callable[[str], str]"
current_route = "str"

Suppressing a diagnostic

An inline {# type: ignore #} in the template becomes a blanket ignore comment on the generated line. Checkers spell that differently, so name yours if you run only one:

[tool.types_for_jinja]
suppression = "ty" # portable (default), mypy, pyright, or ty

The default emits # type: ignore, which pyright, ty, and mypy all honour. Naming a checker emits only what that checker reads, so pyright writes # pyright: ignore and mypy will not honour it. Suppression is blanket per line rather than per code, because rule codes differ between checkers and a wrong one fails to suppress.

Typed render calls (optional)

generate types the inside of a template. types-for-jinja wrapper types the call site, so render_profile(porfile=...) fails your checker the same way a typo in the template body does:

$ types-for-jinja wrapper templates/ -o myapp/_render \
    --env-import 'from myapp.templating import env as _env'
types-for-jinja: Wrote 3 of 3 wrapper file(s)

Each template gets one function whose signature is its {#def #} header, and whose body calls Jinja unchanged:

@beartype
def render_profile(*, profile: Profile) -> Markup:
    """Render profile.html.jinja with a checked context."""
    return Markup(_env.get_template('profile.html.jinja').render(profile=profile))

Set the options once in pyproject.toml instead of passing them every run:

[tool.types_for_jinja]
template_dirs = ["myapp/templates"]

[tool.types_for_jinja.wrapper]
env_import = "from myapp.templating import env as _env"
out_dir = "myapp/_render"
validator = "beartype"

template_dirs is what makes the generated get_template() argument match the name your loader uses.

Stubs and wrappers are different artifacts

The two commands look alike and are not interchangeable, so it is worth being explicit about which is which:

generate wrapper
Writes stub modules under out_dir (_jinja_stubs by default) importable render functions under wrapper.out_dir
Read by your type checker, and nothing else your application, at runtime
In version control no, gitignore it your call, see below

Both are generated code, so treating them the same way is the least surprising setup: gitignore each out_dir and build them as a step in test, CI, and deploy. Nothing generated reaches a review diff, and nothing can go stale because it is rebuilt before it is used.

Committing the wrappers instead is a reasonable trade for a project that wants a clone to run without a build step. It costs generated code in your diffs and one more thing to keep current, so run types-for-jinja wrapper --check in CI or a pre-commit hook when you take it.

Either way wrapper removes the wrappers whose templates are gone, the same way generate prunes stubs, so a rename cannot leave behind a function that renders a template no longer on disk.

Web apps usually return a response rather than Markup. Point --return-type and --return-import (or return_type and return_import in the config) at your framework's class and the wrapper calls it instead:

def render_profile(*, profile: Profile) -> HTMLResponse:
    """Render profile.html.jinja with a checked context."""
    return HTMLResponse(_env.get_template('profile.html.jinja').render(profile=profile))

A helper that does real work before rendering, or sets a status code, stays hand-written and calls the generated function for the render itself.

Runtime checking

--validator adds render-time enforcement on top: beartype checks the value against the annotation and raises, Pydantic parses and coerces it through a TypeAdapter. Both work whether your context types are dataclasses or Pydantic models. The default is none, because the static check costs nothing at runtime. Pydantic can hand the template a new coerced object, so the value you pass is not always the value rendered; beartype leaves the object alone. A runnable proof of both lives in examples/runtime.

Scope

types-for-jinja checks anything Jinja's own parser reads: plain Jinja2, JinjaX, and the templates in Flask, Litestar, FastAPI, Copier, and Cookiecutter projects. A superset that changes Jinja's delimiters declares them once, using the same names jinja2.Environment uses:

[tool.types_for_jinja.syntax]
variable_start_string = "[["
variable_end_string = "]]"

Copier and Cookiecutter put Jinja expressions in directory names. A stub tree mangles a directory name that is not already a valid identifier, so template/{{ module_name }}/__init__.py.jinja is checkable and still reported at its real path. Set template_globs when the templates are not .html, .jinja, or .j2:

[tool.types_for_jinja]
template_dirs = ["{{cookiecutter.project_slug}}"]
template_globs = ["*.md", "*.py", "*.toml"]

Templates shipped inside an installed package (what jinja2.PackageLoader loads) are reachable with a package:subdirectory entry in template_dirs, alongside plain paths:

[tool.types_for_jinja]
template_dirs = ["myapp:templates", "local/templates"]

Out of scope on purpose: Ansible, Salt, and dbt (untyped runtime contexts and large custom filter libraries, and dbt already has TypeJinja), engines not hosted in Python (Nunjucks, Twig, Liquid, Handlebars), and Python engines with different lookup semantics (Django's DTL, Mako, Chameleon). DESIGN gives the reasoning for each.

Limitations

  • Raw checker output names the stub, not the template. The line number is the template's own, and the stub tree mirrors the template tree, so the mapping reads at a glance; remap recovers the path and column for CI logs, and the editor mirror recovers them inline. Python has no equivalent of Go's //line directive, which is why the path cannot be fixed at the source.
  • Stubs must be regenerated when templates change. generate --check in pre-commit or CI catches a stale one; the LSP regenerates on edit.
  • A template with no line-aligned form (rare; measured under 3% on real template sets) falls back to # L<n> markers, which remap and the mirror still read, and raw checker output does not.
  • Filter and test argument types are unchecked; only built-in return types are pinned, and unknown filters widen to Any.
  • A JinjaX component tag that cannot be resolved to a file is skipped, which includes any tag carrying a catalog prefix (<ui:Button />), because the prefix maps to a search path that lives in the catalog rather than in the template.
  • Only jinja2's own extensions can be declared. A project-defined extension would mean importing project code to parse a template, and a custom tag's meaning is not inferable from its parser hook, so those templates are skipped with a warning.
  • Templates that exist only behind a DictLoader or a database still need a copy on disk to be checked.

Project Status

Early and moving. DESIGN holds the settled decisions, the scope boundary, and the measurements they rest on; BLUE_SKY holds unscheduled work and why each item is waiting. See also the Open Issues and the CODE_TAG_SUMMARY. For release history, see the CHANGELOG.

Contributing

We welcome pull requests! For your pull request to be accepted smoothly, we suggest that you first open a GitHub issue to discuss your idea. For resources on getting started with the code base, see the below documentation:

Code of Conduct

We follow the Contributor Covenant Code of Conduct.

Open Source Status

We try to reasonably meet most aspects of the "OpenSSF scorecard" from Open Source Insights

Responsible Disclosure

If you have any security issue to report, please contact the project maintainers privately. You can reach us at dev.act.kyle@gmail.com.

License

LICENSE

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

types_for_jinja-1.1.1.tar.gz (67.8 kB view details)

Uploaded Source

Built Distribution

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

types_for_jinja-1.1.1-py3-none-any.whl (70.4 kB view details)

Uploaded Python 3

File details

Details for the file types_for_jinja-1.1.1.tar.gz.

File metadata

  • Download URL: types_for_jinja-1.1.1.tar.gz
  • Upload date:
  • Size: 67.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for types_for_jinja-1.1.1.tar.gz
Algorithm Hash digest
SHA256 46704f57bb184e94033819560aead6d9e770f84723c513fb248c2543da20792f
MD5 a44bf945c82f5d0afb73af900866dbc3
BLAKE2b-256 3c7a3d32ee98460ef6b3e138eee146307c528fdbbd34820b48742d7e520eac8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for types_for_jinja-1.1.1.tar.gz:

Publisher: publish.yml on KyleKing/types-for-jinja

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

File details

Details for the file types_for_jinja-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: types_for_jinja-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 70.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for types_for_jinja-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 431777bbc9718da795064f01d64a197d391ef2baa1ce89c02ad17f7b05e0eede
MD5 a980d3d02fc8f4ddede0db63c9427ffe
BLAKE2b-256 6e58076cd40b03fa0b56f732eba994355800c84b777de9a9c465ef21c12b89e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for types_for_jinja-1.1.1-py3-none-any.whl:

Publisher: publish.yml on KyleKing/types-for-jinja

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 Sentry Error logging StatusPage Status page