Fix some docs and comments

This commit is contained in:
Chris de Graaf 2019-09-24 15:37:06 +07:00
parent d53fb0b119
commit a941b96e1d
No known key found for this signature in database
GPG Key ID: 150FFDD9B0073C7B
3 changed files with 1 additions and 4 deletions

View File

@ -6,9 +6,9 @@ Creates a Git repository and a `.gitignore` file.
## Keyword Arguments
- `ignore::Vector{<:AbstractString}`: Patterns to add to the `.gitignore`.
See also: [`gitignore`](@ref).
- `manifest::Bool`: Whether or not to commit `Manifest.toml`.
- `ssh::Bool`: Whether or not to use SSH for the remote.
If left unset, HTTPS is used.
- `manifest::Bool`: Whether or not to commit `Manifest.toml`.
- `gpgsign::Bool`: Whether or not to sign commits with your GPG key.
This option requires that the Git CLI is installed.
"""

View File

@ -28,7 +28,6 @@ A configuration used to generate packages.
- `dir::AbstractString="$(contractuser(Pkg.devdir()))"`: Directory to place packages in.
- `host::AbstractString="github.com"`: URL to the code hosting service where packages will reside.
- `julia_version::VersionNumber=$(repr(default_version()))`: Minimum allowed Julia version.
- `develop::Bool=true`: Whether or not to `develop` new packages in the active environment.
### Template Plugins
- `plugins::Vector{<:Plugin}=Plugin[]`: A list of [`Plugin`](@ref)s used by the template.

View File

@ -1,5 +1,3 @@
# TODO: License fixtures need to be updated every year because they don't use Mustache.
function PT.user_view(::Citation, ::Template, ::AbstractString)
return Dict("MONTH" => 8, "YEAR" => 2019)
end