WindowsでPyCharmを使用79
していて、デフォルトの120
文字数制限ではなく、行の最大長を文字数に制限するように設定を変更したい。
PyCharmの1行あたりの最大文字数はどこで変更できますか?
WindowsでPyCharmを使用79
していて、デフォルトの120
文字数制限ではなく、行の最大長を文字数に制限するように設定を変更したい。
PyCharmの1行あたりの最大文字数はどこで変更できますか?
回答:
これが私のPycharmのスクリーンショットです。必要な設定は次のパスにあります:File -> Settings -> Editor -> Code Style -> General: Right margin (columns)
A style guide is about consistency. Consistency with this style guide is important. Consistency within a project is more important. Consistency within one module or function is most important. But most importantly: know when to be inconsistent -- sometimes the style guide just doesn't apply.
One big exception to PEP 8 is our preference of longer line lengths. We’re well into the 21st Century, and we have high-resolution computer screens that can fit way more than 79 characters on a screen. Don’t limit lines of code to 79 characters if it means the code looks significantly uglier or is harder to read.
Mac上のPyCharm 2018.1の場合:
設定(⌘+ ,)、次にEditor -> Code Style
:
Windows上のPyCharm 2018.3の場合:
ファイル->設定(Ctrl+ Alt+ S)、次にEditor -> Code Style
:
PEP-8をフォローするにはHard wrap at
、80に設定します。
誰でも、または自分のマシンをリロードした場合、コードの再フォーマットを実行しても機能しない場合は、editor-> code style-> pythonでチェックする追加オプションがあります。右マージンを超えていないことを確認してください。これを選択すると、再フォーマットが機能します。