File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ typing:
1313 poetry run mypy
1414
1515format :
16- poetry run black --check sqlalchemy_bind_manager tests
16+ poetry run black --check .
1717
1818lint :
1919 poetry run ruff .
2020
2121format-fix :
22- poetry run black sqlalchemy_bind_manager tests
22+ poetry run black .
2323
2424lint-fix :
2525 poetry run ruff . --fix
Original file line number Diff line number Diff line change @@ -74,7 +74,21 @@ plugins = "pydantic.mypy"
7474
7575[tool .ruff ]
7676select = [" E" , " F" , " I" ]
77+ extend-exclude = [" docs" ]
7778
7879[tool .ruff .per-file-ignores ]
7980"__init__.py" = [" F401" ]
8081"repository.py" = [" F401" ]
82+
83+ [tool .black ]
84+ files = '''
85+ (
86+ sqlalchemy_bind_manager
87+ tests
88+ )
89+ '''
90+ extend-exclude = '''
91+ (
92+ /docs
93+ )
94+ '''
You can’t perform that action at this time.
0 commit comments