Skip to content

Commit

Permalink
comment out some settings
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Mar 4, 2024
1 parent a5c7c5d commit a47fcb4
Showing 1 changed file with 39 additions and 39 deletions.
78 changes: 39 additions & 39 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.tabSize": 4
},
"black-formatter.args": [
"--config",
"pyproject.toml"
],
"black-formatter.path": [
".venv/bin/python",
"-m",
"black"
],
// "black-formatter.args": [
// "--config",
// "pyproject.toml"
// ],
// "black-formatter.path": [
// ".venv/bin/python",
// "-m",
// "black"
// ],
"cSpell.words": [
"codeforlife",
"klass",
Expand All @@ -36,36 +36,36 @@
"**/.pytest_cache": true,
"**/__pycache__": true
},
"isort.args": [
"--settings-file=pyproject.toml"
],
"isort.path": [
".venv/bin/python",
"-m",
"isort"
],
"mypy-type-checker.args": [
"--config-file=pyproject.toml"
],
"mypy-type-checker.path": [
".venv/bin/python",
"-m",
"mypy"
],
"pylint.args": [
"--rcfile=pyproject.toml"
],
"pylint.path": [
".venv/bin/python",
"-m",
"pylint"
],
"python.defaultInterpreterPath": ".venv/bin/python",
"python.testing.pytestArgs": [
"-n=auto",
"-c=pyproject.toml",
"."
],
// "isort.args": [
// "--settings-file=pyproject.toml"
// ],
// "isort.path": [
// ".venv/bin/python",
// "-m",
// "isort"
// ],
// "mypy-type-checker.args": [
// "--config-file=pyproject.toml"
// ],
// "mypy-type-checker.path": [
// ".venv/bin/python",
// "-m",
// "mypy"
// ],
// "pylint.args": [
// "--rcfile=pyproject.toml"
// ],
// "pylint.path": [
// ".venv/bin/python",
// "-m",
// "pylint"
// ],
// "python.defaultInterpreterPath": ".venv/bin/python",
// "python.testing.pytestArgs": [
// "-n=auto",
// "-c=pyproject.toml",
// "."
// ],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false
}

0 comments on commit a47fcb4

Please sign in to comment.