-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathsetup.cfg
More file actions
30 lines (26 loc) · 765 Bytes
/
Copy pathsetup.cfg
File metadata and controls
30 lines (26 loc) · 765 Bytes
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
[pylint.MASTER]
py-version = 3.10
[pylint.DESIGN]
max-args = 7
max-positional-arguments = 7
[pylint.FORMAT]
max-line-length = 100
ignore-long-lines = ^\s*((`[^`]*`?\s+)?<?https?://\S+>?`?_?|Reference:\s+https?://\S+)(\s+.*)?$
[isort]
# Vertical Hanging Indent
multi_line_output = 3
# Formatting settings
line_length = 120
include_trailing_comma = 1
combine_as_imports = 1
force_grid_wrap = 2
use_parentheses = 1
force_sort_within_sections = 1
lines_after_imports = 2
skip_glob = *.git/*,*.env/*,*/docs/*,*/build/*,*/.eggs/*,*.egg-info/*
default_section = THIRDPARTY
sections = FUTURE,STDLIB,THIRDPARTY,CURRENT_PROJECT,LOCALFOLDER,TESTS
no_lines_before = LOCALFOLDER
# Section for specific project imports
known_current_project = mercadopago
known_tests = tests