Files
cadquery/mypy.ini
Adam Urbańczyk f38f9cb252 Start using MyPy in CI
* 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
2020-06-13 22:01:54 +02:00

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