|
2 | 2 | source = "finecode_extension_api.actions.lint.LintAction" |
3 | 3 | handlers = [ |
4 | 4 | { name = "flake8", source = "fine_python_flake8.Flake8LintHandler", env = "dev_no_runtime", dependencies = [ |
5 | | - "fine_python_flake8==0.1.0", |
| 5 | + "fine_python_flake8==0.2.*", |
6 | 6 | "flake8-bugbear (>=24.12.12,<25.0.0)", |
7 | 7 | ] }, |
8 | 8 | { name = "mypy", source = "fine_python_mypy.MypyLintHandler", env = "dev_no_runtime", dependencies = [ |
9 | | - "fine_python_mypy==0.1.0", |
| 9 | + "fine_python_mypy==0.2.*", |
10 | 10 | ] }, |
11 | 11 | ] |
12 | 12 |
|
13 | | -[tool.finecode.action_handler.flake8.config] |
14 | | -max_line_length = 80 |
15 | | -extend_select = ["B950"] |
| 13 | +[[tool.finecode.action_handler]] |
| 14 | +source = "fine_python_flake8.Flake8LintHandler" |
| 15 | +config.max_line_length = 80 |
| 16 | +config.extend_select = ["B950"] |
16 | 17 | # W391 is not compatible with black, because black adds an empty line to the end of the file |
17 | 18 | # TODO: move in recommended config once config merging is implemented |
18 | | -extend_ignore = ["E203", "E501", "E701", "W391"] |
| 19 | +config.extend_ignore = ["E203", "E501", "E701", "W391"] |
0 commit comments