A VS Code extension that allows you to toggle your formatting settings ON and OFF with a simple click.
In the command palette (CMD + SHIFT + P
) select “Install Extension” and choose “Formatting Toggle”.
The extension should show up on the right side of the status bar. Simply click it to toggle the formatting settings ON and OFF. Alternatively, in the command palette (CMD + SHIFT + P
), run the “Toggle Formatting” command.
.prettierignore
) to ignore specific files for all contributors of your project.
By default, Formatting Toggle toggles all formatting settings: editor.formatOnPaste
, editor.formatOnSave
and editor.formatOnType
. To toggle different settings, or to prevent a specific setting from being toggled, you can use the formattingToggle.affects
setting in your editor settings (Code › Preferences › Settings).
💡 Formatting Toggle was created with formatting settings in mind but allows you to toggle any boolean setting that lives at the root of the VSCode configuration. editor.codeActionsOnSave
is currently the only deeply nested setting supported.
{
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"formattingToggle.affects": ["editor.formatOnSave"]
}
{
"editor.formatOnType": false,
"formattingToggle.affects": ["editor.formatOnPaste", "editor.formatOnSave"]
}
{
"formattingToggle.affects": ["editor.codeActionsOnSave.source.fixAll.eslint"]
}
{
"formattingToggle.affects": [
"editor.formatOnPaste",
"editor.formatOnSave",
"editor.formatOnType"
]
}