make click review lint checker ignore code comments

Currently the review tool checks for any text matches in the code. For example a hardcoded path anywhere in the code does throw an error.

But sometimes this (or other things) might be useful to add in a comment. Then it would not be a valid error.

To fix this, the lint checks would need to

  • determine the type of file e.g. qml, js, c++, ...
  • have the corresponding syntax of marking comments and end of line listed
  • parse the code and skip commented out code
Edited by Jonatan Hatakeyama Zeidler