|
1 | 1 | [tool.autoflake]
|
2 |
| -remove_all_unused_imports = true |
3 | 2 | exclude = "__init__.py"
|
| 3 | +remove_all_unused_imports = true |
4 | 4 |
|
5 | 5 | [tool.isort]
|
6 | 6 | combine_as_imports = true
|
7 | 7 | extra_standard_library = "pytest"
|
8 | 8 | force_grid_wrap = 1
|
9 | 9 | force_sort_within_sections = true
|
10 |
| -known_third_party = "hypothesis,pytest" |
| 10 | +honor_noqa = true |
11 | 11 | known_first_party = "<MODULE_NAME>"
|
| 12 | +known_third_party = "hypothesis" |
12 | 13 | multi_line_output = 3
|
13 | 14 | profile = "black"
|
| 15 | +use_parentheses = true |
14 | 16 |
|
15 | 17 | [tool.mypy]
|
16 | 18 | check_untyped_defs = true
|
17 |
| -disallow_incomplete_defs = true |
18 |
| -disallow_untyped_defs = true |
19 | 19 | disallow_any_generics = true
|
| 20 | +disallow_incomplete_defs = true |
| 21 | +disallow_subclassing_any = true |
20 | 22 | disallow_untyped_calls = true
|
21 | 23 | disallow_untyped_decorators = true
|
22 |
| -disallow_subclassing_any = true |
| 24 | +disallow_untyped_defs = true |
23 | 25 | ignore_missing_imports = true
|
24 |
| -strict_optional = true |
25 | 26 | strict_equality = true
|
| 27 | +strict_optional = true |
26 | 28 | warn_redundant_casts = true
|
27 | 29 | warn_return_any = true
|
28 | 30 | warn_unused_configs = true
|
@@ -63,18 +65,18 @@ add-ignore = "D200,D203,D204,D205,D212,D302,D400,D401,D412,D415"
|
63 | 65 |
|
64 | 66 | [tool.pytest.ini_options]
|
65 | 67 | addopts = "-v --showlocals --durations 10"
|
66 |
| -xfail_strict = true |
67 |
| -log_format = "%(levelname)8s %(asctime)s %(filename)20s %(message)s" |
68 | 68 | log_date_format = "%m-%d %H:%M:%S"
|
| 69 | +log_format = "%(levelname)8s %(asctime)s %(filename)20s %(message)s" |
| 70 | +xfail_strict = true |
69 | 71 |
|
70 | 72 | [tool.towncrier]
|
71 | 73 | # Read https://github.com/ethereum/<REPO_NAME>/blob/main/newsfragments/README.md for instructions
|
72 |
| -package = "<MODULE_NAME>" |
73 |
| -filename = "docs/release_notes.rst" |
74 | 74 | directory = "newsfragments"
|
75 |
| -underlines = ["-", "~", "^"] |
76 |
| -title_format = "<REPO_NAME> v{version} ({project_date})" |
| 75 | +filename = "docs/release_notes.rst" |
77 | 76 | issue_format = "`#{issue} <https://github.com/ethereum/<REPO_NAME>/issues/{issue}>`__"
|
| 77 | +package = "<MODULE_NAME>" |
| 78 | +title_format = "<REPO_NAME> v{version} ({project_date})" |
| 79 | +underlines = ["-", "~", "^"] |
78 | 80 |
|
79 | 81 | [[tool.towncrier.type]]
|
80 | 82 | directory = "breaking"
|
|
0 commit comments