Brandmeister Last Heard Monitor/Notifier
1# configuration file for sourcery.ai
2# config reference: https://docs.sourcery.ai/Reference/Configuration/sourcery-yaml/#github
3
4version: '1' # The schema version of this config file
5
6ignore: # A list of paths or files which Sourcery will ignore.
7- .git
8- venv
9- .venv
10- env
11- .env
12- .tox
13- config.ini
14
15rule_settings:
16 enable:
17 - default
18 disable: [] # A list of rule IDs Sourcery will never suggest.
19 rule_types:
20 - refactoring
21 - suggestion
22 - comment
23 python_version: '3.11' # A string specifying the lowest Python version your project supports. Sourcery will not suggest refactorings requiring a higher Python version.
24
25github:
26 ignore_labels:
27 - sourcery-ignore
28 - documentation
29 - wontfix
30 request_review:
31 origin: owner
32 forked: author
33 sourcery_branch: sourcery/{base_branch}