We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linux and Windows use different paths for gjslint, but we don't know the OS of the user:
usr/local/bin vs C:\\Python27\\Scripts
usr/local/bin
C:\\Python27\\Scripts
It would be great that closureLinterPath takes an Array of paths, and tries a path if the previous path is unknown.
closureLinterPath
The text was updated successfully, but these errors were encountered:
Assuming that C:\Python27\Scripts (or whatever Python version) is in Windows PATH env variable, this works:
closureLinterPath: (process.platform === "win32") ? 'gjslint' : '/usr/local/bin', command: 'gjslint'
Sorry, something went wrong.
No branches or pull requests
Linux and Windows use different paths for gjslint, but we don't know the OS of the user:
usr/local/bin
vsC:\\Python27\\Scripts
It would be great that
closureLinterPath
takes an Array of paths, and tries a path if the previous path is unknown.The text was updated successfully, but these errors were encountered: