Skip to content

Commit e0b567a

Browse files
mikeprosserniMike Prosser
andauthored
Update VS Code settings.json to match best practices (#13)
* update vscode settings to match best practices * remove isort config, since it's user specific * revert --no-cov * remove "." from pytestArgs --------- Co-authored-by: Mike Prosser <Mike.Prosser@emerson.com>
1 parent f1e3343 commit e0b567a

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

.vscode/settings.json

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
{
2-
"python.testing.pytestArgs": [
3-
"."
4-
],
52
"python.testing.unittestEnabled": false,
6-
"python.testing.pytestEnabled": true
3+
"python.testing.pytestEnabled": true,
4+
"debug.allowBreakpointsEverywhere": true,
5+
"flake8.path": [
6+
"ni-python-styleguide",
7+
"lint"
8+
],
9+
"python.analysis.includeAliasesFromUserFiles": true,
10+
"black-formatter.args": [
11+
"--line-length",
12+
"100"
13+
],
14+
"editor.formatOnSave": true,
15+
"[python]": {
16+
"editor.rulers": [
17+
100
18+
]
19+
}
720
}

0 commit comments

Comments
 (0)