Skip to content

Commit

Permalink
chore(vscode): Add extension and setting
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierBerger committed Sep 1, 2023
1 parent b05aaf2 commit bcbc18a
Showing 1 changed file with 37 additions and 2 deletions.
39 changes: 37 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
{
"livePreview.openPreviewTarget": "External Browser"
}
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
},
"isort.args":["--profile", "black"],
"pylint.args": [
"--disable=C0114",
"--disable=C0115",
"--disable=C0116",
"--disable=C0411",
"--disable=E0401",
"--disable=E0611",
"--disable=R0913",
"--disable=W0105",
"--disable=W0201",
"--disable=W0613",
"--disable=W0718",
"--disable=W1514",
"--max-line-length=120"
],
"files.autoSave": "off",
"black-formatter.args": [
"--line-length=120"
],
"git-graph.commitDetailsView.location": "Docked to Bottom",
"python.testing.pytestArgs": [
"appdaemon"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"livePreview.openPreviewTarget": "External Browser",
"livePreview.serverRoot": "appdaemon/test/htmlcov",
"terminal.integrated.copyOnSelection": false
}

0 comments on commit bcbc18a

Please sign in to comment.