How to remove the warning of repeated words in Pycharm?

I have disabled typos but I still have inspection warnings like below in PyCharm ("typo: you repeated a word"). How can I get rid of them without manually ignoring them every time? In my field I have repeated words (genes) which aren't mistakes.

An example that shows this problem:

# test test

enter image description here


  • Python 3.10.2
  • Pycharm 2021.3
  • Windows 11

Upvotes: 2

Views: 237

Answers (1)

I found the trick. It was actually because of the grammar inspection, and not the typo inspection that you need to uncheck.

Upvotes: 1

Related Questions