LoginSignup
0
0

More than 1 year has passed since last update.

vscodeでpythonのimportの自動ソートを無効にする

Posted at

vscodeのsetting.jsonにautopep8の整形は使うがimportの自動ソートをオフにしたい場合は

"python.formatting.autopep8Args": ["--ignore", "E402"]

を追加していたら自動ソートされずにすんでいたが、上記を書いていても自動ソートされるようになってしまうようであれば、以下のように修正すればまた自動ソートされないようになる。

"autopep8.args": ["--ignore", "E402"]
0
0
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
0
0