Last active
July 19, 2019 09:08
-
-
Save pferreir/fccb17eda8ecc6fa88cc454fd9f79cac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "python.venvPath": "/home/pedro/.virtualenvs" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "editor.rulers": [ | |
| 119 | |
| ], | |
| "editor.formatOnPaste": false, | |
| "python.formatting.blackPath": "/Users/pedro/.virtualenvs/black/bin/black", | |
| "python.formatting.provider": "black", | |
| "python.formatting.blackArgs": [ | |
| "--line-length", "120" | |
| ], | |
| "gitlens.views.repositories.location": "scm", | |
| "gitlens.views.fileHistory.location": "scm", | |
| "gitlens.views.lineHistory.location": "scm", | |
| "gitlens.views.compare.location": "scm", | |
| "gitlens.views.search.location": "scm", | |
| "editor.fontSize": 13, | |
| "editor.minimap.enabled": false, | |
| "editor.tabCompletion": "on", | |
| "gitlens.codeLens.enabled": false, | |
| "gitlens.codeLens.recentChange.enabled": false, | |
| "gitlens.currentLine.enabled": false, | |
| "breadcrumbs.enabled": true, | |
| "files.insertFinalNewline": true, | |
| "files.trimTrailingWhitespace": true, | |
| "files.trimFinalNewlines": true, | |
| "search.useIgnoreFiles": true, | |
| "files.exclude": { | |
| "__pycache__": true, | |
| ".cache": true, | |
| ".coverage": true, | |
| "*.egg-info": true, | |
| "**/.DS_Store": true, | |
| "**/.git": true, | |
| "**/.hg": true, | |
| "**/.indicosource/*": true, | |
| "**/.svn": true, | |
| "**/*.log": true, | |
| "**/*.mo": true, | |
| "**/*.py[co]": true, | |
| "**/CVS": true, | |
| "dist": true, | |
| "docs/build": true, | |
| "htmlcov": true, | |
| "node_modules": true | |
| }, | |
| "editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace", | |
| "window.zoomLevel": 0, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.colorTheme": "One Dark Pro", | |
| "python.jediEnabled": false, | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "folders": [ | |
| { | |
| "name": "src", | |
| "path": "src" | |
| }, | |
| { | |
| "name": "plugins", | |
| "path": "plugins" | |
| }, | |
| { | |
| "name": "plugins-cern", | |
| "path": "plugins-cern" | |
| }, | |
| { | |
| "name": "plugin-dev", | |
| "path": "plugin-dev" | |
| } | |
| ], | |
| "settings": { | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "dist/": true | |
| }, | |
| "files.exclude": { | |
| "data": true, | |
| "**/dist/**/*": true | |
| }, | |
| "cSpell.enabled": false, | |
| "eslint.packageManager": "yarn", | |
| "eslint.workingDirectories": [ | |
| { | |
| "directory": "src", | |
| "changeProcessCWD": true | |
| }, | |
| { | |
| "directory": "plugins", | |
| "changeProcessCWD": true | |
| }, | |
| { | |
| "directory": "plugins-cern", | |
| "changeProcessCWD": true | |
| } | |
| ], | |
| "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false, | |
| "python.pythonPath": "~/.virtualenvs/indico/bin/python", | |
| "git.ignoreLimitWarning": true, | |
| "python.linting.enabled": true, | |
| "python.linting.pylintEnabled": false, | |
| "python.linting.flake8Enabled": true, | |
| "python.linting.pydocstyleEnabled": true, | |
| "python.jediEnabled": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment