Skip to content
Snippets Groups Projects
Commit ef60c378 authored by Tim Jaacks's avatar Tim Jaacks
Browse files

Sourcery: keep "for-append-to-extend" check disabled

This is another check that suggests changes an average developer without
profound Python experience would find hard to understand. Disable it.

See for reference:
https://docs.sourcery.ai/Reference/Python/Default-Rules/for-append-to-extend/
parent cf371aca
No related branches found
No related tags found
1 merge request!322Sourcery: keep "for-append-to-extend" check disabled
Pipeline #76982 skipped with stage
...@@ -6,6 +6,8 @@ rule_settings: ...@@ -6,6 +6,8 @@ rule_settings:
- default - default
disable: disable:
# Might make the code more pythonic, but takes more time to understand
- for-append-to-extend
# Code is easier to read without this # Code is easier to read without this
- min-max-identity - min-max-identity
# Keep explicit lower range limit instead of using implicit default value # Keep explicit lower range limit instead of using implicit default value
...@@ -17,7 +19,6 @@ rule_settings: ...@@ -17,7 +19,6 @@ rule_settings:
# FIXME: verify if we want to keep the checks below. # FIXME: verify if we want to keep the checks below.
# If not, remove them. If yes, move them above this comment. # If not, remove them. If yes, move them above this comment.
- low-code-quality - low-code-quality
- for-append-to-extend
rule_types: rule_types:
- refactoring - refactoring
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment