Skip to content

Commit

Permalink
Merge pull request #57 from SamWarden/dev
Browse files Browse the repository at this point in the history
Publish Didiator v0.3.0
  • Loading branch information
SamWarden authored Jan 30, 2023
2 parents 3eb13e2 + 8854e93 commit 7f52226
Show file tree
Hide file tree
Showing 23 changed files with 1,196 additions and 353 deletions.
41 changes: 41 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[flake8]
count=False
statistics=False
show-source=False

max-line-length=120

application-import-names=dataclass_factory
exclude=
.venv,
docs,
benchmarks
docstring-convention=pep257
ignore=
# A003 class attribute "..." is shadowing a python builtin
A003,
# D100 Missing docstring in public module
D100,
# D101 Missing docstring in public class
D101,
# D102 Missing docstring in public method
D102,
# D103 Missing docstring in public function
D103,
# D104 Missing docstring in public package
D104,
# D105 Missing docstring in magic method
D105,
# D107 Missing docstring in __init__
D107,
# W503 line break before binary operator
W503,
# W504 line break after binary operator
W504,
# B008 Do not perform function calls in argument defaults.
B008,

max-cognitive-complexity=12
max-complexity=12
per-file-ignores=
**/__init__.py:F401
Loading

0 comments on commit 7f52226

Please sign in to comment.