@camera.ui/camera-ui-opencv 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/requirements-lock.txt +0 -6
- package/ruff.toml +0 -90
package/package.json
CHANGED
package/requirements-lock.txt
DELETED
package/ruff.toml
DELETED
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
# Exclude a variety of commonly ignored directories.
|
|
2
|
-
exclude = [
|
|
3
|
-
".bzr",
|
|
4
|
-
".direnv",
|
|
5
|
-
".eggs",
|
|
6
|
-
".git",
|
|
7
|
-
".git-rewrite",
|
|
8
|
-
".hg",
|
|
9
|
-
".ipynb_checkpoints",
|
|
10
|
-
".mypy_cache",
|
|
11
|
-
".nox",
|
|
12
|
-
".pants.d",
|
|
13
|
-
".pyenv",
|
|
14
|
-
".pytest_cache",
|
|
15
|
-
".pytype",
|
|
16
|
-
".ruff_cache",
|
|
17
|
-
".svn",
|
|
18
|
-
".tox",
|
|
19
|
-
".venv",
|
|
20
|
-
".vscode",
|
|
21
|
-
"__pypackages__",
|
|
22
|
-
"_build",
|
|
23
|
-
"buck-out",
|
|
24
|
-
"build",
|
|
25
|
-
"dist",
|
|
26
|
-
"node_modules",
|
|
27
|
-
"site-packages",
|
|
28
|
-
"venv",
|
|
29
|
-
]
|
|
30
|
-
|
|
31
|
-
# Same as Black.
|
|
32
|
-
line-length = 110
|
|
33
|
-
indent-width = 4
|
|
34
|
-
|
|
35
|
-
# Assume Python 3.8
|
|
36
|
-
target-version = "py39"
|
|
37
|
-
|
|
38
|
-
[lint]
|
|
39
|
-
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
|
|
40
|
-
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
|
|
41
|
-
# McCabe complexity (`C901`) by default.
|
|
42
|
-
select = [
|
|
43
|
-
# pycodestyle
|
|
44
|
-
"E",
|
|
45
|
-
# Pyflakes
|
|
46
|
-
"F",
|
|
47
|
-
# pyupgrade
|
|
48
|
-
"UP",
|
|
49
|
-
# flake8-bugbear
|
|
50
|
-
"B",
|
|
51
|
-
# flake8-simplify
|
|
52
|
-
"SIM",
|
|
53
|
-
# isort
|
|
54
|
-
"I",
|
|
55
|
-
]
|
|
56
|
-
ignore = ["E501", "B023", "B006"]
|
|
57
|
-
|
|
58
|
-
# Allow fix for all enabled rules (when `--fix`) is provided.
|
|
59
|
-
fixable = ["ALL"]
|
|
60
|
-
unfixable = []
|
|
61
|
-
|
|
62
|
-
# Allow unused variables when underscore-prefixed.
|
|
63
|
-
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
|
|
64
|
-
|
|
65
|
-
[format]
|
|
66
|
-
# Like Black, use double quotes for strings.
|
|
67
|
-
quote-style = "double"
|
|
68
|
-
|
|
69
|
-
# Like Black, indent with spaces, rather than tabs.
|
|
70
|
-
indent-style = "space"
|
|
71
|
-
|
|
72
|
-
# Like Black, respect magic trailing commas.
|
|
73
|
-
skip-magic-trailing-comma = false
|
|
74
|
-
|
|
75
|
-
# Like Black, automatically detect the appropriate line ending.
|
|
76
|
-
line-ending = "auto"
|
|
77
|
-
|
|
78
|
-
# Enable auto-formatting of code examples in docstrings. Markdown,
|
|
79
|
-
# reStructuredText code/literal blocks and doctests are all supported.
|
|
80
|
-
#
|
|
81
|
-
# This is currently disabled by default, but it is planned for this
|
|
82
|
-
# to be opt-out in the future.
|
|
83
|
-
docstring-code-format = true
|
|
84
|
-
|
|
85
|
-
# Set the line length limit used when formatting code snippets in
|
|
86
|
-
# docstrings.
|
|
87
|
-
#
|
|
88
|
-
# This only has an effect when the `docstring-code-format` setting is
|
|
89
|
-
# enabled.
|
|
90
|
-
docstring-code-line-length = "dynamic"
|