Skip to content

Commit

Permalink
fixed module not found error in Dockerfile + Misc updates (#15)
Browse files Browse the repository at this point in the history
* fixed module not found error in Dockerfile. updated Readme and removed unnecessary code in init. Upgraded pylint version. generated new pylintrc

* upgraded versions

* use COPY
  • Loading branch information
codecakes authored Jul 13, 2022
1 parent bcd733b commit 77dd3f6
Show file tree
Hide file tree
Showing 7 changed files with 583 additions and 603 deletions.
17 changes: 11 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repos:
- id: black
exclude: venv
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.1.0
rev: v3.8.1
hooks:
- id: reorder-python-imports
- repo: https://github.com/pre-commit/pre-commit-hooks
Expand All @@ -28,11 +28,16 @@ repos:
language: system
types: [python]
args:
- --rcfile=.pylintrc
- --disable=C
- --disable=C0415
- --disable=W
- --msg-template="{path}||{msg_id}||{symbol}||{category}||{line}||{column}||{msg}"
[
"-rn", # Only display messages
"-sn", # Don't display the score
"--rcfile=.pylintrc", # Link to your config file
"--load-plugins=pylint.extensions.docparams", # Load an extension
"--disable=C",
"--disable=C0415",
"--disable=W",
"--msg-template={path}||{msg_id}||{symbol}||{category}||{line}||{column}||{msg}",
]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.961
hooks:
Expand Down
Loading

0 comments on commit 77dd3f6

Please sign in to comment.