From 79620454d0ba0fb81306e80dccfe77a7652d94fa Mon Sep 17 00:00:00 2001 From: Matheus Date: Mon, 22 Sep 2025 07:14:04 -0300 Subject: [PATCH] Docs: change format_on_save value from false to "off" (#38615) Found this outdated piece of information in the docs while trying to disable it myself, this PR simply changes `false` to `"off"`. Release Notes: - N/A --- docs/src/languages/python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/languages/python.md b/docs/src/languages/python.md index faca1185768d09b5dcb6e485c146b0e1973cf870..98eca1fcc9d43747aaf45085db5ed831f8d0b25f 100644 --- a/docs/src/languages/python.md +++ b/docs/src/languages/python.md @@ -198,7 +198,7 @@ You can disable format-on-save for Python files in your `settings.json`: { "languages": { "Python": { - "format_on_save": false + "format_on_save": "off" } } }