File: pyproject.toml

package info (click to toggle)
flake8-import-order 0.19.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 352 kB
  • sloc: python: 2,574; sh: 5; makefile: 4
file content (40 lines) | stat: -rw-r--r-- 554 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool.black]
line-length = 78
target-version = ['py37']
exclude = '''
(
  /(
      \.eggs         # exclude a few common directories in the
    | \.git          # root of the project
    | \.hg
    | \.mypy_cache
    | \.tox
    | \.venv
    | _build
    | build
    | dist
    | venv
    | tests\/test_cases
  )/
)
'''
force-exclude = '''
(
  /(
    tests\/test_cases
  )/
)
'''

[tool.mypy]
files = ["."]
exclude = [
    "^docs/",
    "^tests/",
]

[tool.isort]
profile = "black"
line_length = 78
force_single_line = true
skip = ["tests/test_cases/*"]