* MyPy related cleanup * Simple mypy conf * Run mypy on travis * Install mypy before using it * Remove unused functions * Added some type annotations to geom * Started adding annotations + minor cleanups * Apply black * find/replace typo fix * mypy.ini cleanup * Install OCP-stubs before running mypy in travis * Try without ignoring missing imports * Install ocp before running mypy * More explicit ignoring import policy * install mypy via conda * Mypy debugging * Cleanup of travis.yml * Added annotations to BoundBox * Added coveragerc * Add member types in Plane * Correct .coveragerc * Blackify geom
12 lines
183 B
INI
12 lines
183 B
INI
[mypy]
|
|
ignore_missing_imports = False
|
|
|
|
[mypy-ezdxf.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-pyparsing.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-IPython.*]
|
|
ignore_missing_imports = True
|