generated from executablebooks/mdformat-plugin
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Chris Butler <chris@thebutlers.me>
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# codecov: | ||
# #Following line is excluded to test other functionality until we are confident. | ||
# #strict_yaml_branch: main # only use the latest copy on main branch | ||
|
||
coverage: | ||
range: "75...100" | ||
status: | ||
patch: | ||
mdformat_frontmatter: | ||
target: 75% | ||
project: | ||
mdformat_frontmatter: # This can be anything, but it needs to exist as the name | ||
# basic settings | ||
target: auto | ||
threshold: 5% # how much coverage is allowed to drop | ||
# advanced settings | ||
if_no_uploads: error | ||
if_not_found: success | ||
if_ci_failed: error | ||
only_pulls: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"""An mdformat plugin for parsing / ignoring frontmatter.""" | ||
|
||
__version__ = "0.2.0" | ||
__version__ = "0.2.1" | ||
|
||
from .plugin import RENDERER_FUNCS, update_mdit # noqa: F401 |