Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

Commit

Permalink
chore(dev): add pyrightconfig, include unused import ruff rule
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinNitroG committed Dec 28, 2024
1 parent 2e0c41c commit d958f01
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ poetry.toml
.ruff_cache/

# LSP config files
pyrightconfig.json
# pyrightconfig.json

### venv ###
# Virtualenv
Expand Down
3 changes: 3 additions & 0 deletions pyrightconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"typeCheckingMode": "standard"
}
5 changes: 4 additions & 1 deletion ruff.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[lint]
select = ["I"]
select = [
"I", # Isort
"F401", # Unused imports
]

0 comments on commit d958f01

Please sign in to comment.