Skip to content

Commit b01608f

Browse files
committed
👽 Support latest py-tree-sitter
1 parent a045c5d commit b01608f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
exclude: ^templates/.*|.*\.json$
2+
exclude: ^templates/|\.json$
33

44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks
6-
rev: v4.5.0
6+
rev: v4.6.0
77
hooks:
88
- id: check-added-large-files
99
- id: fix-byte-order-marker
@@ -47,7 +47,7 @@ repos:
4747
hooks:
4848
- id: check-mailmap
4949
- repo: https://github.com/rhysd/actionlint
50-
rev: v1.6.26
50+
rev: v1.7.0
5151
hooks:
5252
- id: actionlint
5353
- repo: https://github.com/adrienverge/yamllint
@@ -69,18 +69,18 @@ repos:
6969
- mdformat-config
7070
- mdformat-web
7171
- repo: https://github.com/DavidAnson/markdownlint-cli2
72-
rev: v0.12.1
72+
rev: v0.13.0
7373
hooks:
7474
- id: markdownlint-cli2
7575
additional_dependencies:
7676
- markdown-it-texmath
7777
- repo: https://github.com/astral-sh/ruff-pre-commit
78-
rev: v0.2.1
78+
rev: v0.4.4
7979
hooks:
8080
- id: ruff
8181
- id: ruff-format
8282
- repo: https://github.com/kumaraditya303/mirrors-pyright
83-
rev: v1.1.350
83+
rev: v1.1.362
8484
hooks:
8585
- id: pyright
8686

src/mutt_language_server/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
SCHEMAS = {}
1515
QUERIES = {}
16-
language = Language(get_language_ptr(), "muttrc")
16+
language = Language(get_language_ptr())
1717
parser = Parser()
1818
parser.set_language(language)
1919

0 commit comments

Comments
 (0)