我有一个php文件,其内容如下:
include '../vendor/autoload.php';
问题是,此文件由Composer安装,因此当前不存在。有没有办法让VSCode忽略这一行?
答案 0 :(得分:1)
假设您使用的是php-intellisense linter,只需尝试在要忽略的行之前添加// // @ php-ignore设置:
// @ php-ignore
line of code that you want the linter to ignore
another line
//,但此行不会被忽略。