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
This commit is contained in:
Matheus
2025-09-22 07:14:04 -03:00
committed by GitHub
parent 271771c742
commit 79620454d0

View File

@@ -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"
}
}
}