PyCharm Javascript Debugger "Do not step into scripts" is Ignored / Not Honored or Followed
I find debugging Javascript in Pycharm difficult by-default. Add to that initial level of difficulty that:
(in Professional Edition)
Build, Execution, Deployment > Debugging > Stepping
I check "Do not step into library scripts" and "Do not step into scripts".
I then list out some Javascript files I don't want stepped into.
main.js seems to come from Kaspersky.
jquery-3.2.1.slim.min.js comes from me copying / pasting a CDN link from Bootstrap.
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
Is there a way to prevent stepping into either of these scripts? If not, I understand.
Please sign in to leave a comment.
It should be an URL; you can use wildcards, like"*" or "?". For example: http://*/test3.js
Thanks for the tip. I'll try what you recommended in the future!