diff --git a/.gitignore b/.gitignore index 31b6623..601f230 100644 --- a/.gitignore +++ b/.gitignore @@ -472,6 +472,16 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ +### Python Patch ### +# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration +poetry.toml + +# ruff +.ruff_cache/ + +# LSP config files +pyrightconfig.json + ### VisualStudioCode ### .vscode/* !.vscode/settings.json @@ -486,20 +496,11 @@ cython_debug/ # Built Visual Studio Code Extensions *.vsix -# Local History for Visual Studio Code -.history/ - ### VisualStudioCode Patch ### # Ignore all local history of files .history .ionide -# Support for Project snippet scope -.vscode/*.code-snippets - -# Ignore code-workspaces -*.code-workspace - ### Windows ### # Windows thumbnail cache files Thumbs.db diff --git a/pyproject.toml b/pyproject.toml index 5099b21..8c4f3c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ nb = "nb_cli.__main__:main" [tool.pyright] pythonPlatform = "All" -# reportPrivateImportUsage = false +reportPrivateImportUsage = false reportShadowedImports = false executionEnvironments = [ { root = "./website", pythonVersion = "3.10" },