-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.docstr.yaml
34 lines (33 loc) · 998 Bytes
/
.docstr.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
## This file was part of docstr-cov-workflow and was modified under the terms of
## its MIT License. Copyright (c) 2021 Ezequiel Pássaro. All rights reserved.
## Full text:
## -https://github.com/epassaro/docstr-cov-workflow/blob/main/LICENSE
## Links:
## - https://dev.to/epassaro/how-to-keep-track-of-docstring-coverage-of-python-packages-on-ci-41fc
paths:
- flask_fomanticui
#badge: docs
exclude: .*/tests # regex
verbose: 2 # int (0-3)
skip_magic: True
skip_file_doc: True
skip_init: True
skip_class_def: False
skip_private: True
follow_links: True
#ignore_names_file: .*/test # regex
# fail_under: 90
percentage_only: False
#ignore_patterns: # Dict with key/value pairs of file-pattern/node-pattern
# .*: method_to_ignore_in_all_files
# FileWhereWeWantToIgnoreAllSpecialMethods: "__.+__"
# SomeFile:
# - method_to_ignore1
# - method_to_ignore2
# - method_to_ignore3
# a_very_important_view_file:
# - "^get$"
# - "^set$"
# - "^post$"
# detect_.*:
# - "get_val.*"