cleanlab--cleanlab
91b5b40ff7
This patch moves the `--allow-redefinition` into the `.mypi.ini` file. Centralizing our mypy config in a single file makes sense, and this way, if people want to run mypy locally, they don't need to remember to supply this command-line argument.
24 行
383 B
INI
24 行
383 B
INI
[mypy]
|
|
allow_redefinition = True
|
|
|
|
[mypy-sklearn.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-scikeras.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-tensorflow.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-fasttext.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-IPython.display.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-torchvision.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-tqdm.*]
|
|
ignore_missing_imports = True
|