-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
53 lines (44 loc) · 1.44 KB
/
setup.cfg
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
41
42
43
44
45
46
47
48
49
50
51
52
53
; [coverage:run]
; source = pan_deduper/
; [coverage:report]
; sort = cover
[pylama]
linters = mccabe,pycodestyle,pylint
skip = .nox/*,build/*,docs/*,private/*,site/*,tests/*,venv/*,.venv/*
[pylama:pycodestyle]
max_line_length = 100
[pylama:pylint]
rcfile = .pylintrc
[pydocstyle]
match-dir = ^pan_deduper/*
#ignore = D101,D202,D203,D212,D400,D406,D407,D408,D409,D415
ignore = D101,D202,D203,D212,D400,D406,D407,D408,D409,D413,D415, E0015, R0022
# D101: missing docstring in public class
# D202: No blank lines allowed after function docstring
# D203: 1 blank line required before class docstring
# D212: Multi-line docstring summary should start at the first line
# D400: First line should end with a period
# D406: Section name should end with a newline
# D407: Missing dashed underline after section
# D408: Section underline should be in the line following the sections name
# D409: Section underline should match the length of its name
# D413: Missing blank line after last section
# D415: first line should end with a period, question mark, or exclamation point
# E0015: Unrecognized option found
# R0022: Useless option value
[isort]
profile = black
line_length = 100
multi_line_output = 3
include_trailing_comma = True
# [darglint]
# docstring_style = google
# strictness = full
# ignore = DAR202
# [mypy]
# python_version = 3.9
# pretty = True
# ignore_missing_imports = True
# warn_redundant_casts = True
# warn_unused_configs = True
# strict_optional = True