pycharm npm unresolved function or method from a validator node_modules package Follow
Any reason why when I type in the period there is no auto suggestions for validator? Everything is pretty much vanilla PyCharm setup. You can see the api for validator has quite a few methods. None of them are showing up with intelli-sense. https://www.npmjs.com/package/validator
Please sign in to leave a comment.
Installing the typings should help: `npm install --save @types/validator`.
Note that this may not work for
validator
because of a bug in the IDE (https://youtrack.jetbrains.com/issue/WEB-43528)It looks like the bug has not been worked on for a year?