Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. {
  2. "files.trimTrailingWhitespace": true,
  3. "terminal.integrated.cursorStyle": "line",
  4. "terminal.integrated.cursorBlinking": true,
  5. "terminal.integrated.copyOnSelection": true,
  6. "python.linting.pylintArgs": [
  7. "--max-line-length=150",
  8. "--max-attributes=20",
  9. "--ignored-modules=tensorflow",
  10. "--extension-pkg-whitelist=tensorflow"
  11. ],
  12. "python.testing.nosetestsEnabled": false,
  13. "python.testing.unittestEnabled": false,
  14. "python.testing.pyTestEnabled": true,
  15. "python.testing.pyTestArgs": [
  16. "-v"
  17. ],
  18. "python.formatting.provider": "autopep8",
  19. "python.formatting.autopep8Args": [
  20. "--max-line-length=150"
  21. ],
  22. "python.sortImports.args": [
  23. "-ns",
  24. "__init__.py",
  25. "-l",
  26. "150"
  27. ],
  28. "files.exclude": {
  29. "**/__pycache__": true,
  30. "**/*.pyc": true
  31. },
  32. "editor.suggestSelection": "first",
  33. "python.jediEnabled": true,
  34. "python.pythonPath": "/data/hsiming/virtualenv/py36/bin/python"
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement