Skip to content

Commit

Permalink
Move isort and cooverage configuration to pyproject.toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
drgarcia1986 committed Jul 31, 2020
1 parent d231940 commit 2bf1fc9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 12 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,15 @@ all = ["django", "aiocache"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"

[tool.isort]
known_first_party = "shared_memory_dict"
atomic = true
line_length = 79
multi_line_output = 3
use_parentheses = true
include_trailing_comma = true
force_grid_wrap = 0

[tool.coverage.run]
omit = ["*/*/tests/*", "*/*/settings/*"]
12 changes: 0 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,14 +1,2 @@
[coverage:run]
omit = */*/tests/*, */*/settings/*

[isort]
known_first_party = shared_memory_dict
atomic = true
line_length = 79
multi_line_output = 3
use_parentheses = true
include_trailing_comma = True
force_grid_wrap = 0

[mypy]
ignore_missing_imports = True

0 comments on commit 2bf1fc9

Please sign in to comment.