We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d957336 commit 3a5e5d4Copy full SHA for 3a5e5d4
3 files changed
packages/ai-providers/server-ai-langchain/Makefile
@@ -20,6 +20,7 @@ test: install
20
lint: #! Run type analysis and linting checks
21
lint: install
22
poetry run mypy src/ldai_langchain
23
+ poetry run isort --check --atomic src/ldai_langchain
24
poetry run pycodestyle src/ldai_langchain
25
26
.PHONY: build
packages/ai-providers/server-ai-langchain/pyproject.toml
@@ -33,6 +33,8 @@ pytest = ">=2.8"
33
pytest-cov = ">=2.4.0"
34
pytest-asyncio = ">=0.21.0"
35
mypy = "==1.18.2"
36
+pycodestyle = ">=2.11.0"
37
+isort = ">=5.12.0"
38
39
[tool.mypy]
40
python_version = "3.9"
packages/ai-providers/server-ai-langchain/setup.cfg
@@ -0,0 +1,2 @@
1
+[pycodestyle]
2
+max-line-length = 120
0 commit comments