I know this is probably a dumb question, but I’m trying to setup and create my own Linter for VBScript. Python syntax is new to me. Is ‘py’ the executable extension (e.g. filname.py)?
Thanks!
I know this is probably a dumb question, but I’m trying to setup and create my own Linter for VBScript. Python syntax is new to me. Is ‘py’ the executable extension (e.g. filname.py)?
Thanks!
If I’m understanding correctly, then no. While .py files can be thought of as an executable, linters usually interact with a third-party executable such as jshint
or pylint
(or, in your case, something to do with VBScript).