Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. {
  2. "shellLauncher.shells.windows": [
  3. {
  4. "shell": "C:\\Windows\\System32\\cmd.exe",
  5. "label": "cmd"
  6. },
  7. {
  8. "shell": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
  9. "label": "PowerShell 5.1"
  10. },
  11. {
  12. "shell": "C:\\Program Files\\PowerShell\\6\\pwsh.exe",
  13. "label": "PowerShell 6.2"
  14. },
  15. {
  16. "shell": "C:\\Program Files\\Git\\bin\\bash.exe",
  17. "label": "Git bash"
  18. },
  19. {
  20. "shell": "C:\\Windows\\System32\\bash.exe",
  21. "label": "WSL Bash"
  22. }
  23. ],
  24. "python.pythonPath": "${workspaceFolder}\\.env.ps1\\Scripts\\python.exe",
  25. "python.venvPath": "~\\.virtualenvs",
  26. "python.linting.enabled": true,
  27. "python.linting.flake8Enabled": true,
  28. "python.linting.flake8Path": "~\\.virtualenvs\\tools3\\Scripts\\flake8",
  29. "python.linting.pep8Path": "~\\.virtualenvs\\tools3\\Scripts\\pep8",
  30. "python.formatting.autopep8Path": "~\\.virtualenvs\\tools3\\Scripts\\autopep8",
  31. "python.linting.pep8Enabled": true,
  32. "python.linting.pep8Args": [
  33. "--ignore=E501"
  34. ],
  35. "python.linting.pylintEnabled": false,
  36. "python.linting.pylintPath": "pylint",
  37. "python.linting.pylintArgs": [
  38. "--load-plugins",
  39. "pylint_django"
  40. ],
  41. "code-runner.executorMap": {
  42. "python": "$pythonPath -u $fullFilneName",
  43. },
  44. "code-runner.clearPreviousOutput": true,
  45. "code-runner.showExecutionMessage": false,
  46. "code-runner.ignoreSelection": true,
  47. "code-runner.saveFileBeforeRun": true,
  48. "[plaintext]": {
  49. "editor.quickSuggestions": false
  50. },
  51. "editor.formatOnSave": true,
  52. "editor.fontFamily": "Source Code Pro",
  53. "editor.fontSize": 20,
  54. "editor.quickSuggestionsDelay": 100,
  55. "debug.console.fontFamily": "Source Code Pro",
  56. "debug.console.fontSize": 20,
  57. "terminal.integrated.fontFamily": "Source Code Pro",
  58. "terminal.integrated.fontSize": 20,
  59. "zenMode.centerLayout": false,
  60. "zenMode.fullScreen": false,
  61. "zenMode.hideLineNumbers": false,
  62. "zenMode.hideTabs": false,
  63. "editor.minimap.enabled": false,
  64. "workbench.settings.openDefaultSettings": true,
  65. "workbench.settings.editor": "json",
  66. "workbench.statusBar.visible": true,
  67. "workbench.colorTheme": "Material Theme Darker High Contrast",
  68. "workbench.iconTheme": "vscode-icons",
  69. "files.exclude": {
  70. "**/.git": true,
  71. "**/.hg": true,
  72. "**/.svn": true,
  73. "**/.vscode": true,
  74. "**/CVS": true,
  75. "**/.DS_Store": true,
  76. "**/env": true,
  77. "**/.env.ps1": true,
  78. "**/.env.wsl": true,
  79. "**/__pycache__": true,
  80. },
  81. "sqltools.connections": [
  82. {
  83. "database": "{$workspaceFolder\\db.sqlite3",
  84. "dialect": "SQLite",
  85. "name": "SQLite"
  86. }
  87. ],
  88. "git.ignoreLimitWarning": true,
  89. "terminal.integrated.shell.windows": "C:\\Program Files\\PowerShell\\6\\pwsh.exe",
  90. "powershell.powerShellExePath": "C:\\Program Files\\PowerShell\\6\\pwsh.exe",
  91. "prettier.arrayExpand": true,
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement