Compare commits

..

2 Commits

Author SHA1 Message Date
45b6ccdf22 feat: add direnv 2026-04-13 19:15:52 -04:00
0a80999ca7 refactor(pyproject): set typeCheckingMode to basic 2026-04-11 18:48:33 -04:00
3 changed files with 10 additions and 0 deletions

6
.envrc Normal file
View File

@@ -0,0 +1,6 @@
dotenv
export VIRTUAL_ENV=."venv"
layout python
use flake

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.direnv
.env
.venv
__pycache__

View File

@@ -8,3 +8,6 @@ errornocord = "errornocord.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["errornocord*"]
[tool.basedpyright]
typeCheckingMode = "basic"