File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 11pyproject.toml
22examples/*
33src/mistral/extra/*
4+ pylintrc
Original file line number Diff line number Diff line change @@ -52,7 +52,8 @@ ignore=CVS
5252# ignore-list. The regex matches against paths and can be in Posix or Windows
5353# format. Because '\\' represents the directory delimiter on Windows systems,
5454# it can't be used as an escape character.
55- ignore-paths =
55+ ignore-paths =^src/mistralai_private/extra/.*$,
56+ ^src/mistralai_private/conversations.py
5657
5758# Files or directories matching the regular expression patterns are skipped.
5859# The regex matches against base names, not paths. The default value ignores
Original file line number Diff line number Diff line change @@ -69,7 +69,13 @@ module = "typing_inspect"
6969ignore_missing_imports = true
7070
7171[[tool .mypy .overrides ]]
72- module = " jsonpath"
72+ module = [
73+ " jsonpath.*" ,
74+ " typing_inspect.*" ,
75+ " authlib.*" ,
76+ " mcp.*" ,
77+ " griffe.*"
78+ ]
7379ignore_missing_imports = true
7480
7581[tool .pyright ]
You can’t perform that action at this time.
0 commit comments