-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1216 from cmu-delphi/release/delphi-epidata-4.1.4
Release Delphi Epidata 4.1.4
- Loading branch information
Showing
70 changed files
with
4,340 additions
and
5,286 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 4.1.3 | ||
current_version = 4.1.4 | ||
commit = False | ||
tag = False | ||
|
||
|
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,22 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
# We recommend you to keep these unchanged | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
|
||
[*.py] | ||
# Change these settings to your own preference | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,24 @@ | ||
# style(black): format cdc acquisition | ||
980b0b7e80c7923b79e14fee620645e680785703 | ||
# style(black): format covidcast_nowcast acquisition | ||
9e6ff16f599e8feec34a08dd1bddbc5eae347b55 | ||
# style(black): format ecdc acquisition | ||
d1141d904da4e62992b97c92d5caebd8fadffd42 | ||
# style(black): format flusurv acquisition | ||
08af0f6b7bff85bbc2b193b63b5abf6a16ba03e4 | ||
# style(black): format fluview acquisition | ||
0133ef2042c4df8867e91595eb1f64873edb4632 | ||
# style(black): format ght acquisition | ||
b8900a0bc846888885310911efd6e26459effa99 | ||
# style(black): format kcdc acquisition | ||
a849384c884934b3b7c3c67b68aa6240277d6b6d | ||
# style(black): format nidss acquisition | ||
d04af3c02fda7708a16bec0952b1aa7475acaec7 | ||
# style(black): format paho acquisition | ||
7f60fbba572c1b6e5153a9ef216895bdc2f7f5b3 | ||
# style(black): format quidel acquisition | ||
b9ceb400d9248c8271e8342275664ac5524e335d | ||
# style(black): format twitter acquisition | ||
07ed83e5768f717ab0f9a62a9209e4e2cffa058d | ||
# style(black): format wiki acquisition | ||
923852eafa86b8f8b182d499489249ba8f815843 |
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,5 +1,26 @@ | ||
|
||
[tool.black] | ||
line-length = 200 | ||
line-length = 100 | ||
target-version = ['py38'] | ||
include = 'server,tests/server' | ||
|
||
[tool.pylint] | ||
[tool.pylint.'MESSAGES CONTROL'] | ||
max-line-length = 100 | ||
disable = [ | ||
'logging-format-interpolation', | ||
# Allow pytest functions to be part of a class | ||
'no-self-use', | ||
'too-many-locals', | ||
'too-many-arguments', | ||
# Allow pytest classes to have one test | ||
'too-few-public-methods', | ||
] | ||
|
||
[tool.pylint.'BASIC'] | ||
# Allow arbitrarily short-named variables. | ||
variable-rgx = ['[a-z_][a-z0-9_]*'] | ||
argument-rgx = [ '[a-z_][a-z0-9_]*' ] | ||
attr-rgx = ['[a-z_][a-z0-9_]*'] | ||
|
||
[tool.pylint.'DESIGN'] | ||
ignored-argument-names = ['(_.*|run_as_module)'] |
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.