是否有 way/extension 从 Visual Studio 代码中的 "Format On Save" 中排除某些行?

Is there a way/extension to exclude certain line(s) from "Format On Save" in Visual Studio Code?

我正在处理一个 Python 项目,其中格式设置为 Autopep8。当 VS 设置为格式修改 code/file 保存或使用键盘快捷键时,是否有任何扩展或可能的设置可以定义从格式中排除特定行?

将注释 # noqa 添加到您希望 VS Code 保留的每一行的末尾。例如,防止 VS Code 改变

RED     = 0
YELLOW  = 1

RED = 0
YELLOW = 1

只需执行以下操作:

RED     = 0  # noqa
YELLOW  = 1  # noqa

您可以参加:

# autopep8: off
# autopep8: on

# fmt: off
# fmt: on