Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to avoid the spell check on string in Pycharm

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.

like image 689
StefanoG_ITA Avatar asked Apr 30 '14 08:04

StefanoG_ITA


People also ask

How do I turn off automatic spell check?

Here's how. Select the text where you'd like to disable spell check or press Ctrl+A to select the entire document. On the Review tab, click Editor, and then click Set Proofing Language. In the Language box, click Don't check spelling or grammar, and then click OK.

How do I turn off Dynamic spelling?

Here's how. Click File > Options > Proofing, clear the Check spelling as you type box, and click OK. To turn spell check back on, repeat the process and select the Check spelling as you type box.


2 Answers

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.

like image 136
Than Skourtan Avatar answered Sep 23 '22 00:09

Than Skourtan


In the latest version of PyCharm it appears as ProofReading:

ProofReading

like image 42
Nicolas Lopez Avatar answered Sep 25 '22 00:09

Nicolas Lopez