Skip to content

Commit e46350e

Browse files
authored
Merge pull request #37 from plugwise/codefactor
Codefactor
2 parents c1ea78c + 722ecc1 commit e46350e

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.bandit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[bandit]
2-
skips: B106
2+
exclude: tests/

plugwise/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Plugwise module."""
22

3-
__version__ = "0.8.2a2"
3+
__version__ = "0.8.2a3"
44

55
from plugwise.smile import Smile
66
from plugwise.stick import stick

pylintrc

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Use a conservative default here; 2 should speed up most setups and not hurt
44
# any too bad. Override on command line as appropriate.
55
jobs=2
6-
#load-plugins=pylint_strict_informational
6+
# load-plugins=pylint_strict_informational
77
persistent=no
88
extension-pkg-whitelist=ciso8601,defusedxml
99

@@ -50,6 +50,16 @@
5050
too-many-boolean-expressions,
5151
unused-argument,
5252
wrong-import-order,
53+
raise-missing-from,
54+
missing-class-docstring,
55+
missing-function-docstring,
56+
missing-module-docstring,
57+
too-many-nested-blocks,
58+
# for now (20201031) added the below while we are codemerging/-improving
59+
# missing-class-docstring
60+
# missing-function-docstring
61+
# missing-module-docstring
62+
# too-many-nested-blocks => inherent with fixing complexity
5363
enable=
5464
use-symbolic-message-instead
5565

0 commit comments

Comments
 (0)