Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. {
  2. // The number of spaces a tab is equal to
  3. "editor.tabSize": 2,
  4.  
  5. // Ignore extension recommendations
  6. "extensions.ignoreRecommendations": false,
  7.  
  8. // Configure glob patterns for excluding files and folders
  9. "files.exclude": {
  10. "**/*.pyc": true
  11. },
  12.  
  13. // Insert a final new line at the end of the file when saving it
  14. "files.insertFinalNewline": true,
  15.  
  16. // Commit all changes when there are no staged changes
  17. "git.enableSmartCommit": true,
  18.  
  19. // Whether to lint Python files using pylint
  20. "python.linting.pylintEnabled": false,
  21.  
  22. // Whether to lint Python files using flake8
  23. "python.linting.flake8Enabled": true,
  24.  
  25. // Specifies the icon theme used in the workbench
  26. "workbench.iconTheme": "simple-icons"
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement