Skip to content

Instantly share code, notes, and snippets.

@schrockn
Created March 18, 2019 17:02
Show Gist options
  • Save schrockn/70f70591adbf6090577dd343145a7ff5 to your computer and use it in GitHub Desktop.
Save schrockn/70f70591adbf6090577dd343145a7ff5 to your computer and use it in GitHub Desktop.
{
"python.unitTest.pyTestArgs": [
"dagster/dagster_tests/core_tests",
"dagit/dagit_tests/test_graphql.py"
],
"python.analysis.disabled": [
"unresolved-import"
],
"python.unitTest.pyTestEnabled": true,
"python.pythonPath": "/Users/schrockn/code/venvs/dagster-3.7.1/bin/python",
"python.linting.lintOnSave": true,
"python.linting.pep8Enabled": false,
"python.linting.pylintArgs": [
"--rcfile",
"/Users/schrockn/code/dagster/.pylintrc"
],
"files.autoSave": "onFocusChange",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/__pycache__": true,
"**/*.pyc": true,
"**/.cache": true,
"**/.runs": true,
"**/tags": true,
"**/.ropeproject": true,
"**/node_modules": true,
"**/.files": true,
"**/access.log": true,
"**/error.log": true,
"**/*.egg-info": true,
"**/settings_comments.txt": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/.temp": true,
"**/build": true,
"**/spark-warehouse": true,
"**/.ipynb_checkpoints": true,
"*/dist": true,
"*/htmlcov": true,
"**/.tox": true,
"*/coverage.xml": true,
"*/.coverage": true
},
"python.venvPath": "/Users/schrockn/venvs",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": ["--line-length", "100", "-S", "--fast", "-N"],
"python.linting.pylintEnabled": true,
"editor.minimap.enabled": false,
"git.ignoreLimitWarning": true,
"python.jediEnabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment