File: .isort.cfg

package info (click to toggle)
requirements-parser 0.11.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 564 kB
  • sloc: python: 360; makefile: 146
file content (20 lines) | stat: -rw-r--r-- 569 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[settings]
## read the docs: https://pycqa.github.io/isort/docs/configuration/options.html
## keep in sync with flake8 config - in `.flake8` file
known_first_party = requirements
skip_gitignore = false
skip_glob =
    build/*,dist/*,__pycache__,.eggs,*.egg-info*,
    *_cache,*.cache,
    .git/*,.tox/*,.venv/*,venv/*,.venv*/*,venv*/*,
    _OLD/*,_TEST/*,
    docs/*
combine_as_imports = true
default_section = THIRDPARTY
ensure_newline_before_comments = true
include_trailing_comma = true
line_length = 120
multi_line_output = 3
src_paths =
    requirements
    tests