Skip to content

Commit

Permalink
add vscode support for dev
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasvinaya committed Jan 22, 2024
1 parent 40912c3 commit 8a300dc
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 42 deletions.
21 changes: 3 additions & 18 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,15 @@
"editor.defaultFormatter": "vscode.json-language-features"
},
"[python]": {
"editor.defaultFormatter": "ms-python.pylint"
"editor.defaultFormatter": "eeyore.yapf"
},
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.formatting.provider": "yapf",
"autoDocstring.docstringFormat": "numpy",
"python.formatting.provider": "yapf",
"pythonIndent.trimLinesWithOnlyWhitespace": true,
"python.languageServer": "Pylance",
"python.autoComplete.extraPaths": [],
"python.linting.enabled": true,
"python.linting.pylintPath": "pylint",
"python.linting.pylintEnabled": true,
"python.analysis.extraPaths": [],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"pylint.args": [
"--rcfile=pyproject.toml"
],
"black-formatter.args": [
"--config=pyproject.toml"
],
"flake8.args": [
"--toml-config=pyproject.toml"
],
"isort.args": [
"--settings-path=pyproject.toml"
]
}
}
5 changes: 0 additions & 5 deletions Containerfile

This file was deleted.

18 changes: 18 additions & 0 deletions qtsit.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"folders": [
{
"path": "../qtsit"
}
],
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.pylint",
"pylint.importStrategy": "useBundled",
"autoDocstring.docstringFormat": "numpy",
"pythonIndent.trimLinesWithOnlyWhitespace": true,
"python.languageServer": "Pylance",
"python.autoComplete.extraPaths": [],
"python.formatting.provider": "yapf",
"python.analysis.extraPaths": []
}
}
10 changes: 0 additions & 10 deletions requirements-test.txt

This file was deleted.

10 changes: 1 addition & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
[tool:pytest]
markers =
jax: marks tests for deepchem-jax only (deselect with '-m "not jax"')
torch: marks tests for deepchem-torch only (deselect with '-m "not torch"')
tensorflow: marks tests for deepchem-torch only (deselect with '-m "not tensorflow"')
slow: marks tests as slow (deselect with '-m "not slow"')
serial
dqc: marks tests for deepchem-dqc only (deselect with '-m "not dqc"')
[mypy]
ignore_missing_imports = True

[mypy-yaml.*]
ignore_missing_imports = True

[flake8]
ignore =
ignore =
# Indentation is not a multiple of four
E111,
# Indentation is not a multiple of four (comment)
Expand Down

0 comments on commit 8a300dc

Please sign in to comment.