Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. {
  2. "editor.formatOnSave": true,
  3. "editor.largeFileOptimizations": false,
  4. "editor.codeActionsOnSave": {
  5. "source.fixAll": false,
  6. "source.organizeImports": true
  7. },
  8. "files.encoding": "utf8",
  9. "breadcrumbs.enabled": true,
  10. "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
  11. "terminal.integrated.shellArgs.windows": [
  12. "pipenv shell"
  13. ],
  14. // GIT
  15. "gitlens.advanced.messages": {
  16. "suppressShowKeyBindingsNotice": true
  17. },
  18. "git.confirmSync": false,
  19. "git.enableSmartCommit": true,
  20. // Disable the env load because pipenv not need it
  21. "python.terminal.activateEnvironment": false,
  22. // Conf project
  23. "python.envFile": "${workspaceFolder}/.env",
  24. // Test
  25. "python.unitTest.pyTestArgs": [
  26. "testing"
  27. ],
  28. "python.unitTest.unittestEnabled": false,
  29. "python.unitTest.nosetestsEnabled": false,
  30. "python.unitTest.pyTestEnabled": true,
  31. // Lint
  32. "python.formatting.provider": "autopep8",
  33. "python.linting.enabled": true,
  34. "python.linting.lintOnSave": true,
  35. "python.linting.pylintEnabled": false,
  36. "python.linting.flake8Enabled": true,
  37. "python.linting.flake8Args": [ // Link the flake8 project config
  38. "--config=tox.ini"
  39. ]
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement