From b715019845dc4661de8caad7e09a014334cae83c Mon Sep 17 00:00:00 2001 From: IluaAir Date: Tue, 3 Feb 2026 16:43:23 +0300 Subject: [PATCH] reorder file paths --- .gitignore | 2 ++ pyrightconfig.json | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 pyrightconfig.json diff --git a/.gitignore b/.gitignore index 7a3a3f1..19424c4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ /.venv/ /.idea/ +/.netbox/netbox +/.vscode/ diff --git a/pyrightconfig.json b/pyrightconfig.json new file mode 100644 index 0000000..fd488ee --- /dev/null +++ b/pyrightconfig.json @@ -0,0 +1,12 @@ +{ + "extraPaths": ["netbox/netbox"], + "typeCheckingMode": "off", + "reportMissingImports": "warning", + "reportMissingTypeStubs": "none", + "reportGeneralTypeIssues": "none", + "reportOptionalMemberAccess": "none", + "reportOptionalSubscript": "none", + "reportArgumentType": "none", + "reportAssignmentType": "none", + "reportReturnType": "none" +}