How to avoid the spell check on string in Pycharm

StefanoG_ITA picture StefanoG_ITA · Apr 30, 2014 · Viewed 46.9k times · Source

Where is the option to disable the spell check on the strings for the PyCharm IDE? I hate the jagged line under my comments and strings.

Answer

Than Skourtan picture Than Skourtan · Dec 16, 2014

Go to File -> Settings -> Editor -> Inspections. Expand the list under Spelling in the middle window and uncheck the option Typo.

enter image description here

However, practically most of the jagged line is caused by violations of the PEP 8 coding style. If you would like to disable this option too, in the same window, expand the list under Python and uncheck the option PEP 8 coding style violation.