--- a/RefactoringRope/default_config.py Mon Oct 17 08:37:28 2022 +0200 +++ b/RefactoringRope/default_config.py Mon Oct 17 16:45:23 2022 +0200 @@ -25,6 +25,8 @@ ".tox", ".venv", "venv", + ".mypy_cache", + ".pytest_cache", ".eric7project", ] @@ -48,7 +50,7 @@ # prefs.add('python_path', '~/python/') # Should rope save object information or not. - prefs["save_objectdb"] = True + prefs["save_objectdb"] = False prefs["compress_objectdb"] = False # If `True`, rope analyzes each module when it is being saved. @@ -61,7 +63,7 @@ prefs["perform_doa"] = True # Rope can check the validity of its object DB when running. - prefs["validate_objectdb"] = True + prefs["validate_objectdb"] = False # How many undos to hold? prefs["max_history_items"] = 32 @@ -131,6 +133,9 @@ "type_hinting_factory" ] = "rope.base.oi.type_hinting.factory.default_type_hinting_factory" + # Minimum python version to target + prefs["py_version"] = None + def project_opened(project): """This function is called after opening the project"""