commit
c466192406
8 changed files with 47 additions and 0 deletions
@ -0,0 +1,2 @@ |
|||
[run] |
|||
omit = tests/* |
@ -0,0 +1,3 @@ |
|||
.git |
|||
LICENSE |
|||
README.md |
@ -0,0 +1,12 @@ |
|||
*.pyc |
|||
/config.py |
|||
/.idea |
|||
*.db |
|||
/tmp/cty.xml |
|||
/.pytest_cache/ |
|||
/*.egg-info |
|||
/.eggs |
|||
/configtest.py |
|||
/errors_app.log |
|||
.coverage |
|||
/.ropeproject |
@ -0,0 +1,3 @@ |
|||
[settings] |
|||
line_length=120 |
|||
force_single_line=false |
@ -0,0 +1 @@ |
|||
3.6.0 |
@ -0,0 +1,4 @@ |
|||
[python: **.py] |
|||
[jinja2: **/templates/**.jinja2] |
|||
[jinja2: **/templates/**.html] |
|||
extensions=jinja2.ext.autoescape,jinja2.ext.with_ |
@ -0,0 +1,12 @@ |
|||
[tool.black] |
|||
line-length = 120 |
|||
py36 = true |
|||
exclude = ''' |
|||
/( |
|||
\.git |
|||
| \.eggs |
|||
| \.idea |
|||
| \__pycache__ |
|||
)/ |
|||
''' |
|||
skip-numeric-underscore-normalization = true |
@ -0,0 +1,10 @@ |
|||
[aliases] |
|||
test=pytest |
|||
|
|||
[tool:pytest] |
|||
addopts = --verbose --cov=. |
|||
python_files = tests/*.py |
|||
|
|||
[flake8] |
|||
max-line-length = 120 |
|||
ignore = E501 |
Loading…
Reference in new issue