-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
**Release of first major version 🎉** ## BREAKING Changes * Dropped support for python <3.8 --------- Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
- Loading branch information
1 parent
5645ca6
commit 2cee4d5
Showing
17 changed files
with
265 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
insert_final_newline = true | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
end_of_line = lf | ||
|
||
[*.py] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.{yml,yaml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.toml] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.md] | ||
charset = latin1 | ||
indent_style = space | ||
indent_size = 2 | ||
# 2 trailing spaces indicate line breaks. | ||
trim_trailing_whitespace = false | ||
|
||
[*.{rst,txt}] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[{*.ini,.bandit,.flake8}] | ||
charset = latin1 | ||
indent_style = space | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[flake8] | ||
## https://flake8.pycqa.org/en/latest/user/configuration.html | ||
## keep in sync with isort config - in `isort.cfg` file | ||
|
||
exclude = | ||
build,dist,__pycache__,.eggs,*.egg-info*, | ||
*_cache,*.cache, | ||
.git,.tox,.venv,venv | ||
_OLD,_TEST, | ||
docs | ||
|
||
max-line-length = 120 | ||
|
||
# max-complexity = 10 | ||
|
||
ignore = | ||
# ignore `self`, `cls` markers of flake8-annotations>=2.0 | ||
ANN101,ANN102 | ||
# ignore Opinionated Warnings - which are documented as disabled by default | ||
# See https://github.com/sco1/flake8-annotations#opinionated-warnings | ||
ANN401 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.