We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have this pyproject.toml
pyproject.toml
[tool.pyright] venvPath = "." venv = ".venv" [tool.ruff] line-length = 120 target-version = "py312" [tool.ruff.lint] select = ["F", "I"] [tool.ruff.lint.isort] force-single-line = true [mypy] plugins = ["mypy_django_plugin.main"] [mypy.plugins.django-stubs] django_settings_module = "gatekeeper.settings"
Which works fine.
When I run
ruff format . && ruff check --fix .
I get the following error
ruff failed Cause: Failed to parse /opt/workspace/company/project/pyproject.toml Cause: TOML parse error at line 18, column 1 | 18 | [mypy.plugins.django-stubs] | ^ invalid table header dotted key `mypy.plugins` attempted to extend non-table type (array)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have this
pyproject.toml
Which works fine.
When I run
I get the following error
The text was updated successfully, but these errors were encountered: