We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90190be commit 85ceb51Copy full SHA for 85ceb51
src/PkgTemplates.jl
@@ -43,6 +43,7 @@ export
43
Readme,
44
RegisterAction,
45
Runic,
46
+ SciMLBadge,
47
Secret,
48
SrcDir,
49
TagBot,
src/plugins/badges.jl
@@ -20,6 +20,21 @@ function badges(::BlueStyleBadge)
20
)
21
end
22
23
+"""
24
+ SciMLStyleBadge()
25
+
26
+Adds a [`SciMLStyle`](https://github.com/SciML/SciMLStyle) badge to the [`Readme`](@ref) file.
27
28
+struct SciMLStyleBadge <: BadgePlugin end
29
30
+function badges(::SciMLStyleBadge)
31
+ return Badge(
32
+ "Code Style: SciML",
33
+ "https://img.shields.io/badge/code_style-SciML-9558b2.svg",
34
+ "https://github.com/SciML/SciMLStyle",
35
+ )
36
+end
37
38
"""
39
ColPracBadge()
40
0 commit comments