We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7bdffd commit bcc6731Copy full SHA for bcc6731
docs/source/config_file.rst
@@ -979,7 +979,7 @@ These options may only be set in the global section (``[mypy]``).
979
.. confval:: sqlite_cache
980
981
:type: boolean
982
- :default: True
+ :default: False
983
984
Use an `SQLite`_ database to store the cache.
985
mypy/options.py
@@ -299,7 +299,7 @@ def __init__(self) -> None:
299
# Caching and incremental checking options
300
self.incremental = True
301
self.cache_dir = defaults.CACHE_DIR
302
- self.sqlite_cache = True
+ self.sqlite_cache = False
303
self.fixed_format_cache = True
304
self.debug_cache = False
305
self.skip_version_check = False
0 commit comments