PyCharm has this very useful warnings where it underlines/highlights any problematic code and give you hints of how to fix it, like when you hint a variable type and then you provide another type: var: int = ~"Hello World!"~
.
Or when you are typing a indented code, but you forget to add the colons
for i in range(3)~~
print("Hello World!")
And also give you hints about the "cleanness" of your code to follow the PEPs, like if you type ~a=2*4~
it will tell you to write a = 2 * 4
.
All this little hints seem very useful, specially for a beginner, but when I chose to use jupyter lab as my IDE, I discovered that there was almost no hints; To get the errors you have to run the code each time to check you didn't missed any vital part, and then solve one by one the problems that prevent the code from running.
I'm new, so maybe there is an option that was there and I haven't noticed, but in case there is not, is there any way to instal a warning system for Jupyter Lab, specially one that detects the two first issues.
P.D.: I apologise if the I wasn't clear, I'm not really sure about the terminology for this warnings, and thank you in advance.