Skip to content

Commit

Permalink
Remove commented code and add ruff check
Browse files Browse the repository at this point in the history
  • Loading branch information
aazuspan committed Aug 11, 2024
1 parent a452dc1 commit 2dbde79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ show-fixes = true
path = "src/spinasm_lsp/__init__.py"

[tool.ruff.lint]
select = [ "E", "I", "F", "B", "FA", "UP", "PT", "Q", "RET", "SIM", "PERF",]
select = [ "E", "I", "F", "B", "FA", "UP", "PT", "Q", "RET", "SIM", "PERF", "ERA"]

[tool.hatch.envs.default]
dependencies = [ "pre-commit",]
Expand Down
3 changes: 1 addition & 2 deletions tests/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@


@pytest_lsp.fixture(
# params=["neovim", "visual_studio_code"],
params=["visual_studio_code"],
params=["neovim", "visual_studio_code"],
config=ClientServerConfig(server_command=["spinasm-lsp"]),
)
async def client(request, lsp_client: LanguageClient):
Expand Down

0 comments on commit 2dbde79

Please sign in to comment.