From f7845095c69b5f1224d5b2fe08d2224939dc6700 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Fri, 2 Dec 2022 12:45:51 -0500 Subject: [PATCH] Add support for .pyi files (#9) --- .pre-commit-hooks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index 9c4e22a..c6a1f26 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -3,7 +3,7 @@ description: "Run 'ruff' for extremely fast Python linting" entry: ruff language: python - "types": [python] + types_or: [python, pyi] args: [] require_serial: false additional_dependencies: []