9
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

行末にいらん空白がある!!

はじめに

コードレビューで指摘いただいた部分、自分では気づけず
設定で無駄もミスもなくす

また、PEP8にも記載されていたので、重要性を再認識

行末に余計な空白文字を残さないようにしましょう。

下記のコードのように行末に無駄な空白が存在してる
※「␣」記号打ってますが空白の認識でお願いします。

import datetime

now = datetime.datetime.now()

気にしながら打つとか面倒くさい...
ので、調べてたらちゃんとありました!
設定できるものは設定して無駄もミスもなくしていこ!

VScodeで行末の空白を省く設定

  1. 「Ctrl + , 」で設定ページを開く(Windows)
  2. 検索枠に「trim」と入力
  3. チェックを入れる
    • Trim Trailing Whitespace In Regex And Strings
    • Trim Auto Whitespace
    • Trim Trailing Whitespace

スクリーンショット 2024-06-22 054206.png

参考サイト

9
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?