-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Error in lint.py #36
Comments
Can you provide some debug info?
Also, what the directory structure looks like? is it a single window, single file or just a regular project with |
I have this issue as well and I think the problem is with finding the This is what I see in sublime console whenever I save a go file: (with sublime-go just freshly installed; no changes to configuration)
sublime.version()
golint
PATH visible to sublime: |
Offending line causing the error: Lines 99 to 106 in 5c72dad
The last line here with parameter Lines 77 to 81 in 5c72dad
You're trying to destruct a string (the filename) as a 3-element tuple/list. Calls goes like this: |
For some reason just the file name is being passed into the parse function in lint.py, where it is expecting the file path. So it's trying to split string and fails. Not sure what the fix is for this.
The text was updated successfully, but these errors were encountered: