File tree 5 files changed +17
-17
lines changed 5 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 8
8
72
9
9
]
10
10
},
11
+ "trailing-spaces.includeEmptyLines" : true ,
12
+ "trailing-spaces.trimOnSave" : true ,
13
+ "trailing-spaces.syntaxIgnore" : [
14
+ " markdown"
15
+ ],
16
+ "[markdown]" : {
17
+ "files.trimTrailingWhitespace" : false ,
18
+ },
19
+ "files.trimTrailingWhitespace" : true ,
11
20
"files.insertFinalNewline" : true ,
12
21
"files.trimFinalNewlines" : true ,
13
- "files.trimTrailingWhitespace" : true ,
14
22
"editor.comments.insertSpace" : true ,
15
23
"editor.insertSpaces" : true ,
16
24
"editor.detectIndentation" : false ,
22
30
"source.fixAll.convertImportFormat" : true ,
23
31
"source.organizeImports" : true ,
24
32
},
25
- "trailing-spaces.includeEmptyLines" : true ,
26
- "trailing-spaces.trimOnSave" : true ,
27
- "trailing-spaces.syntaxIgnore" : [
28
- " markdown"
29
- ],
30
33
"emeraldwalk.runonsave" : {
31
34
"commands" : [
32
35
{
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ Refer to the [build instructions](build%20instructions.md) if you'd like to buil
92
92
93
93
#### Capture Device
94
94
95
- Select the Video Capture Device that you wanna use if selecting the ` Video Capture Device ` Capture Method. Will show ` [occupied] ` if a device is detected but can't be started.
95
+ Select the Video Capture Device that you wanna use if selecting the ` Video Capture Device ` Capture Method. <!-- Will show `[occupied]` if a device is detected but can't be started. (currently disabled because poking at devices to turn turn them off freezes some like the GV-USB2) -->
96
96
97
97
#### Show Live Similarity
98
98
Original file line number Diff line number Diff line change @@ -41,15 +41,13 @@ else {
41
41
42
42
Write-Host " `n Running Bandit..."
43
43
bandit src/ -f custom -- silent -- recursive
44
- # $exitCodes += $LastExitCode # Returns 1 on low
45
44
if ($LastExitCode -gt 0 ) {
46
45
Write-Host " `Bandit warning ($LastExitCode )" - ForegroundColor Yellow
47
46
}
48
47
else {
49
48
Write-Host " `Bandit passed" - ForegroundColor Green
50
49
}
51
50
52
-
53
51
if ($exitCodes -gt 0 ) {
54
52
Write-Host " `n Linting failed ($exitCodes )" - ForegroundColor Red
55
53
}
Original file line number Diff line number Diff line change 8
8
#
9
9
# Linters
10
10
bandit
11
- flake8 >= 5 , < 6 # flake8-pyi deprecation warnings # flake8-quotes doesn't support v6 yet
11
+ flake8 >= 6 # Validates configuration
12
12
flake8-builtins
13
13
flake8-bugbear
14
14
flake8-class-attributes-order
15
- flake8-comprehensions >= 3.8 # flake8 5 support
15
+ flake8-comprehensions >= 3.8 # flake8 v5 support
16
16
flake8-datetimez
17
- flake8-pyi >= 22.11.0 # flake8 6 support
18
- flake8-quotes
17
+ flake8-pyi >= 22.11.0 # flake8 v6 support
19
18
flake8-simplify
20
19
pep8-naming
21
- pylint >= 2.14 ,< 3.0.0 # New checks # 3.0 still in pre-release
20
+ pylint >= 2.14 ,< 3.0.0 # New checks # 2.16 and 3.0 still in pre-release
22
21
# Formatters
23
22
add-trailing-comma >= 2.3.0 # Added support for with statement
24
23
autopep8 >= 2.0.0 # New checks
Original file line number Diff line number Diff line change 12
12
# Dependencies:
13
13
certifi
14
14
ImageHash >= 4.3.1 # Contains type information + setup as package not module
15
- git+https://github.com/Avasam /keyboard.git@fix-563 #egg=keyboard # Fix install on linux-ci https://github.com/boppreh/keyboard/pull/568
15
+ git+https://github.com/boppreh /keyboard.git#egg=keyboard # Fix install on macos and linux-ci https://github.com/boppreh/keyboard/pull/568
16
16
numpy >= 1.23.2 # Python 3.11 wheels
17
17
opencv-python-headless >= 4.6 # Breaking changes importing cv2.cv2
18
18
packaging
19
19
Pillow >= 9.2 # gnome-screeshot checks
20
20
psutil
21
21
PyAutoGUI
22
22
--extra-index-url https://www.riverbankcomputing.com/pypi/simple/ --pre
23
- PyQt6 > 6.4.0 # Python 3.11 support
23
+ PyQt6 == 6.4.1.dev2210280328 # Python 3.11 support # newer dev failed install
24
24
requests
25
25
toml
26
26
#
27
27
# Build and compile resources
28
- PyInstaller >= 5.5 # Python 3.11 support
28
+ pyinstaller >= 5.5 # Python 3.11 support
29
29
pyinstaller-hooks-contrib >= 2022.9 # opencv-python 4.6 support. Changes for pywintypes and comtypes
30
30
PySide6 >= 6.4.0.1 # Python 3.11 support
31
31
#
You can’t perform that action at this time.
0 commit comments