在保存时自定义 VSC 格式
customizing VSC formatting on Save
我有一个现有的 PHP 代码库,其中的方法被格式化:
public function myIssue() {
// some code...
}
VSC 在保存时将其更改为:
public function myIssue()
{
// some code...
}
有什么方法可以关闭这个特定的 VSC 格式化规则,使其在保存时不发生,并允许 VSC 建议的所有其他格式更改仍然发生?
不是您要找的答案,而是vscode的解释:
Visual studio 代码正在实现所谓的 PSR 编码风格,被认为是 PHP 的标准。正如您在 4.1(函数)的 the documentation 看到的那样,它提到:
The opening brace MUST go on its own line, and the closing brace MUST
go on the next line following the body.
我有一个现有的 PHP 代码库,其中的方法被格式化:
public function myIssue() {
// some code...
}
VSC 在保存时将其更改为:
public function myIssue()
{
// some code...
}
有什么方法可以关闭这个特定的 VSC 格式化规则,使其在保存时不发生,并允许 VSC 建议的所有其他格式更改仍然发生?
不是您要找的答案,而是vscode的解释:
Visual studio 代码正在实现所谓的 PSR 编码风格,被认为是 PHP 的标准。正如您在 4.1(函数)的 the documentation 看到的那样,它提到:
The opening brace MUST go on its own line, and the closing brace MUST go on the next line following the body.