-
Notifications
You must be signed in to change notification settings - Fork 1
/
beepKeyboard.code-workspace
50 lines (49 loc) · 1.51 KB
/
beepKeyboard.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.accessibilitySupport": "on",
"python.linting.enabled": true,
"python.linting.maxNumberOfProblems": 10000,
"python.linting.flake8Args": [
"--config=..\\..\\nvda\\tests\\lint\\flake8.ini",
"--use-flake8-tabs=true"
],
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"python.autoComplete.extraPaths": [
"addon",
"../../nvda/source",
"../../nvda/include/comtypes",
"../../nvda/include/configobj/src",
"../../nvda/include/pyserial",
"../../nvda/include/wxPython",
"../../nvda/miscDeps/python"
],
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.insertSpaces": false,
"python.testing.unittestArgs": [
"-v",
"-s",
"tests.unit",
"-p",
"test_*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.unittestEnabled": false,
"python.analysis.extraPaths": [
"addon",
"../../nvda/source",
"../../nvda/include/comtypes",
"../../nvda/include/configobj/src",
"../../nvda/include/pyserial",
"../../nvda/include/wxPython",
"../../nvda/miscDeps/python"
]
}
}