Add bun as a supported language.

This commit is contained in:
Ferran Jovell 2025-02-16 15:49:33 +01:00
parent 2f93b80484
commit 67537e5660
No known key found for this signature in database
GPG key ID: FA9B3458F68001AB
3 changed files with 251 additions and 0 deletions

View file

@ -1,6 +1,7 @@
from __future__ import annotations
from pre_commit.lang_base import Language
from pre_commit.languages import bun
from pre_commit.languages import conda
from pre_commit.languages import coursier
from pre_commit.languages import dart
@ -25,6 +26,7 @@ from pre_commit.languages import system
languages: dict[str, Language] = {
'bun': bun,
'conda': conda,
'coursier': coursier,
'dart': dart,