From 9f2921da8b58ae206c07132cc1673281ce7283f1 Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Tue, 9 Jun 2026 20:12:11 +0200 Subject: misc: add pyrightconfig.json For working with Python remote plugins for neovim. The `include` is necessary or else pyright would try to analyze all files under HOME, `include` restricts it. The `exclude` is defined because the default value excludes dot dirs by default, the new one does not. --- pyrightconfig.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 pyrightconfig.json diff --git a/pyrightconfig.json b/pyrightconfig.json new file mode 100644 index 0000000..ed66f75 --- /dev/null +++ b/pyrightconfig.json @@ -0,0 +1,9 @@ +{ + "include": [ + ".config/nvim/rplugin/python3" + ], + "exclude": [ + "**/__pycache__" + ], + "stubPath": "typings" +} -- cgit v1.3.1