DonaldWinston Thank you for the question.
*.module files are not treated as PHP files by Visual Studio Code (by default).
Add the following into your workspace settings.json:
"files.associations": {
"*.module": "php"
},
We'll do it automatically in the future update.