astral-sh/ruff-vscode

VSCode status bar display is weird in the latest (2024.44.0)

ryokaji opened this issue · 1 comments

What happens

When 2024.44.0 is installed, the Status bar display in the default (v0.6.4) looks like hunging up as follows.
image

This does not occur if Ruff v0.5.7 is explicitly specified in the settings.
image

*note: This issue is not reporting a bug, the extension looks working fine.

System Info

VSCode version: 1.91.1
Python version: 3.11.2
Host OS:

  • Microsoft Windows 10 Home 22H2 19045.4780
  • macOS Sonoma 14.5

Project structure

The following stuff is minimum configuration to reproduce the issue.

Settings

{
    // Configuration to explicitly specify v0.5.7
    // Assuming that a venv has been created in ~/poc.
    "ruff.path": [
        "/home/node/poc/bin/ruff"
    ]
}

Others

files:

.
├── hello.py
└── .vscode
    └── settings.json

hello.py

print("hello")

Thanks. I can reproduce this by just opening a python project.