Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/config_file.rst
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ These options may only be set in the global section (``[mypy]``).
.. confval:: sqlite_cache

:type: boolean
:default: True
:default: False

Use an `SQLite`_ database to store the cache.

Expand Down
2 changes: 1 addition & 1 deletion mypy/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def __init__(self) -> None:
# Caching and incremental checking options
self.incremental = True
self.cache_dir = defaults.CACHE_DIR
self.sqlite_cache = True
self.sqlite_cache = False
self.fixed_format_cache = True
self.debug_cache = False
self.skip_version_check = False
Expand Down
Loading