-
Notifications
You must be signed in to change notification settings - Fork 141
Notification expecting string but object is passed #511
Comments
Looks like it should just be changed to |
Looks like. But I am not sure if it's in that form all the time . Success message is working fine. Need more inspection . |
this making linter broke for my atom, no fix? |
@v3ss0n, a PR would be welcome. Good opportunity towards a hacktoberfest shirt. 😉 |
@zaroth The issue originally filed here was fixed in v8.1.0. Can you file a new issue with that GIF as well as any information you can share about the repository in question? (A |
I wish I could help more, but I can't specify more than knowing that the bugged error message was about me not having correct configuration in the beginning. After some pain and tutorials I managed to set up eslint correctly and the failed notification went away - and all other ones going forward were shown correctly and I can't reproduce the error any more. I don't really remember what I did that my setup started working - I remember installing |
I had the same problem and thanks to @nauderuan comment worked out that my .eslintrc file had a typo and so linter-eslint wasn't finding the config file |
While fixing errors with
Fix error
option , for some reason the fix failed . But notification received is an object which we are passing as is to atom notification . Which is expecting a string , so it does not show the error message in notification.I get the following error in console
After debugging I realized the
response
object is of the formThe code in
linter-eslint
is like this :I am not sure if this something that should be fixed here or else where .
The text was updated successfully, but these errors were encountered: