-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.sourcery.yaml
40 lines (38 loc) · 950 Bytes
/
.sourcery.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
ignore: # A list of paths or files which Sourcery will ignore.
- .git
- venv
- .venv
- env
- .env
- .tox
- node_modules
- vendor
- .*
- build
- dist
- rd_cmfgen.py
rule_settings:
enable:
- default
- gpsg-standard-import-alias
disable:
- ensure-file-closed
- move-assign
- remove-redundant-if
- inline-immediately-returned-variable
- inline-variable
- missing-dict-items
- extract-method
- extract-duplicate-method
- code_clarification
- low-code-quality
rule_types:
- refactoring
- suggestion
- comment
python_version: '3.10' # A string specifying the lowest Python version your project supports. Sourcery will not suggest refactorings requiring a higher Python version.
clone_detection:
min_lines: 7
min_duplicates: 2
identical_clones_only: false