dropbox / mypy-PyCharm-plugin

A simple plugin that allows running mypy from PyCharm and navigate between errors
Apache License 2.0
313 stars 14 forks source link

Running the plugin creates a file .dmpy.json on the root folder #43

Closed rommguy closed 4 years ago

rommguy commented 4 years ago

Every time I run the plugin, I see a file is created ".dmypy.json" If it is needed during the run I think It should be cleaned when the run is over, to avoid changes to the source control even though nothing changed in the source.

Running mypy doesn't create this file.

rommguy commented 4 years ago

Just read about it in the Mypy docs I understand the plugin uses the experimental mypy daemon I'll just add it to .gitignore

ilevkivskyi commented 4 years ago

I understand the plugin uses the experimental mypy daemon

Yes, ecxept the daemon is de facto not experimental anymore (it is around for a year and half now). We use it because it gives much faster response.