When you open a folder at PyCharm it create an folder named .idea. And all dependent settings and environments and status are saved in this .idea folder.
Next settings are usaful just after open a new folder to work with PyCharm.
You can get PyCharm Settings.. menu iterm from File top menu.
For the first time it is needed to set python interpreter for this project. You can select a menu Project: work > Project Interpreter. And then you can see the default python interpreter located at C:\work\py37\Scripts\python.exe. If new created Virtual Environment is not exists under the project C:\work then you can add the interpreter this window - Click the right side icon of Project Interpreter: and select add.
Our source exists at plugin-template folder so it is needed to add Content Root.
- Select
Project Structuremenu underProject: workat settings window. - Click
+ Add Content Rootof right side. - Select
plugin-templatefolder.
PEP-8 is very famous Style Guide for Python Code. PyCharm automatically guide this style guild at editor. One of style is that Do not exceed 80 columns if possible. So python programmers need the 80 columns guide rule at editor. You can do this functionality at the Hard wrap at 80 columns item of menu Editor > Code Style.
Sometimes program code do not follow correct english. To get rid of Typo warning at editor uncheck Typo check item at menu Editor > Inspections > Spelling > Typo.
You can easily seach the item at left top text input control.




