jshint : File C:\Users\Balarka\AppData\Roaming\npm\jshint.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170. At line:1 char:1 + jshint app.js + ~~~~~~ + CategoryInfo : SecurityError: (:) [], PSSecurityException + FullyQualifiedErrorId : UnauthorizedAccess 2 Answers
You can use:
Set-ExecutionPolicy -ExecutionPolicy Undefined -Scope LocalMachine or:
Set-ExecutionPolicy -ExecutionPolicy Undefined -Scope CurrentUser You should enter these commands as Administrator.
There's an answer that was referenced here: https://stackoverflow.com/a/59244943/11518388
Alternatively, you could also edit the properties for Visual Studio Code (right-click on the shortcut, click properties) and force it to always run as an administrator.

about_Execution_Policiesfor more information (and it even provides a URL).