Skip to content

Commit 57dc665

Browse files
authored
Merge pull request #62 from sbrunner/prospector
Add Prospector check
2 parents 74d5692 + 41f7085 commit 57dc665

File tree

7 files changed

+398
-12
lines changed

7 files changed

+398
-12
lines changed

.github/workflows/main.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
- name: Checks
2525
run: c2cciutils-checks
2626

27+
- run: pipenv sync --dev
28+
- run: pipenv run prospector --output=pylint bashcolor
29+
2730
- name: Init pypi
2831
run: |
2932
echo "[pypi]" > ~/.pypirc

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Pipfile.lock

.prospector.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
strictness: veryhigh
3+
4+
max-line-length: 110
5+
6+
pylint:
7+
disable:
8+
- too-many-arguments
9+
10+
pep8:
11+
disable:
12+
- E203 # Whitespace before ':'
13+
- E722 # Do not use bare 'except'
14+
15+
bandit:
16+
run: true
17+
18+
mypy:
19+
run: true
20+
21+
mccabe:
22+
run: false

Pipfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[dev-packages]
7+
prospector = {version = "==1.3.1", extras = ["with_bandit", "with_mypy"]}
8+
flake8 = "==3.8.4"
9+
10+
[requires]
11+
python_version = "3.8"

Pipfile.lock

+335
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bashcolor/__init__.py

+20-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# see also: http://misc.flogisoft.com/bash/tip_colors_and_formatting
22

33

4+
from typing import List, Optional
5+
46
RESET = 0
57
BLACK = 30
68
RED = 31
@@ -35,8 +37,14 @@
3537

3638

3739
def colorize(
38-
text, color=None, background=None, effects=None, color_256=None, background_256=None, with_end=True
39-
):
40+
text: str,
41+
color: Optional[int] = None,
42+
background: Optional[int] = None,
43+
effects: Optional[List[int]] = None,
44+
color_256: Optional[int] = None,
45+
background_256: Optional[int] = None,
46+
with_end: bool = True,
47+
) -> str:
4048
if effects is None:
4149
effects = []
4250
start = []
@@ -60,25 +68,25 @@ def colorize(
6068
start.append(effect)
6169
end.append(effect + _RESET_EFFECT)
6270

63-
start_code = f"{_ESC!s}[{';'.join([str(s) for s in start])!s}m" if text != "" else ""
64-
end_code = f"{_ESC!s}[{';'.join([str(e) for e in end])!s}m" if with_end else ""
65-
return f"{start_code!s}{text!s}{end_code!s}"
71+
start_code = f"{_ESC}[{';'.join([str(s) for s in start])}m" if text != "" else ""
72+
end_code = f"{_ESC}[{';'.join([str(e) for e in end])}m" if with_end else ""
73+
return f"{start_code}{text}{end_code}"
6674

6775

68-
def print_colors():
76+
def print_colors() -> None:
6977
color_pivot = [0]
7078
color_pivot += [e * 6 + 16 for e in range(37)]
7179
color_pivot.append(256)
7280
color_pivot_start = color_pivot[:-1]
7381
color_pivot_end = color_pivot[1:]
74-
color_table = [range(cs, ce) for cs, ce in zip(color_pivot_start, color_pivot_end)]
82+
color_table_list = [range(cs, ce) for cs, ce in zip(color_pivot_start, color_pivot_end)]
7583

76-
for ct in color_table:
84+
for color_table in color_table_list:
7785
text = ""
78-
for c in ct:
79-
cs = str(c)
80-
padding = "".join([" " for e in range(3 - len(cs))])
81-
text += colorize(f" {padding!s}{cs!s} ", background_256=c, with_end=False)
86+
for color in color_table:
87+
color_string = str(color)
88+
padding = "".join([" " for e in range(3 - len(color_string))])
89+
text += colorize(f" {padding}{color_string} ", background_256=color, with_end=False)
8290
print(text + colorize("", background=DEFAULT))
8391

8492

setup.cfg

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[mypy]
2+
python_version = 3.8
3+
warn_redundant_casts = True
4+
warn_unused_ignores = True
5+
ignore_missing_imports = True
6+
strict = True

0 commit comments

Comments
 (0)