File tree Expand file tree Collapse file tree 5 files changed +33
-23
lines changed Expand file tree Collapse file tree 5 files changed +33
-23
lines changed Original file line number Diff line number Diff line change 1+ [flake8]
2+ max-line-length = 120
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ [tool .pytest .ini_options ]
2+ cache_dir = " /tmp"
3+ addopts = " -ra"
4+ markers = [
5+ " deprecated" , # marks tests for deprecated features (deselect with '-m "not deprecated"')
6+ ]
7+
8+ [tool .pylint .design ]
9+ max-args = 14
10+ max-locals = 28
11+ max-attributes = 8
12+ max-statements = 65
13+
14+ [tool .pylint .format ]
15+ max-line-length = 120
16+
17+ [tool .pylint ."messages control" ]
18+ disable = [
19+ " redefined-outer-name" ,
20+ ]
21+
22+ [tool .pylint .similarities ]
23+ ignore-imports = " yes"
24+ min-similarity-lines = 8
25+
26+ [tool .black ]
27+ line-length = 120
28+
29+ [tool .isort ]
30+ line_length = 120
31+ profile = " black"
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments