LoginSignup
3
1

More than 5 years have passed since last update.

vscode python

Posted at

How to use
http://www.atmarkit.co.jp/ait/articles/1711/24/news034.html
https://kiwamiden.com/i-tried-using-vscode-for-python

Setting
https://necojackarc.hatenablog.com/entry/2017/03/16/090000

Intelisense
https://miraium.com/python-with-vscode/
https://vscode-doc-jp.github.io/docs/userguide/intellisense.html
https://teratail.com/questions/117685

lint
pip install pylint-django[with_django]

//qiita.com/RyoMa_0923/items/d0c2613f15dd98280121
    "python.pythonPath": "/home/ex/anaconda3/bin/python",
    "python.jediEnabled": false,
  // Automatically add brackets for functions.
    "python.autoComplete.addBrackets": true,
    "python.autoComplete.extraPaths": ["/home/ex/anaconda3/lib/python3.6/site-packages"],

    "python.linting.enabled": true,
    "python.linting.pylintEnabled": true,
    "python.linting.pylintArgs": [
        "--errors-only",
        "--load-plugins",
        "--load-plugins=pylint_django"]

https://qiita.com/fukuit/items/cd5a76b49af91de83499
http://yamap55.hatenablog.com/entry/2018/07/22/235746

docker remote debug
https://qiita.com/Ryuichirou/items/6327ab5012ca1729d72f#_reference-7d370773f649635aff79

3
1
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
3
1