我如何让php linter忽略vscode中的一行?

时间:2019-01-02 16:23:14

标签: php visual-studio-code linter

我有一个php文件,其内容如下:

include '../vendor/autoload.php';

问题是,此文件由Composer安装,因此当前不存在。有没有办法让VSCode忽略这一行?

1 个答案:

答案 0 :(得分:1)

假设您使用的是php-intellisense linter,只需尝试在要忽略的行之前添加// // @ php-ignore设置:

// @ php-ignore

line of code that you want the linter to ignore

another line //,但此行不会被忽略。