mirror of
https://github.com/MillironX/Kelpie.jl.git
synced 2024-11-14 05:33:09 +00:00
Update code to use Prettier style
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
parent
df38dad4be
commit
438e87617c
6 changed files with 21 additions and 31 deletions
18
.github/ISSUE_TEMPLATE/feature.yml
vendored
18
.github/ISSUE_TEMPLATE/feature.yml
vendored
|
@ -7,9 +7,7 @@ body:
|
|||
attributes:
|
||||
value: |
|
||||
> _Thanks for adding fresh ideas to Kelpie!_ :smile:
|
||||
> _This template is rather extensive. Please fill out all that you can,_
|
||||
> _but remember that it is only a tool: if you feel anything is not_
|
||||
> _relevant, simply leave it blank._
|
||||
> _This template is rather extensive. Please fill out all that you can, but remember that it is only a tool: if you feel anything is not relevant, simply leave it blank._
|
||||
- type: textarea
|
||||
id: summary
|
||||
attributes:
|
||||
|
@ -20,9 +18,7 @@ body:
|
|||
attributes:
|
||||
label: New Function(s)
|
||||
description: |
|
||||
Explain the signature and output of a new API function, in a similar
|
||||
style to that of
|
||||
[Julia docstrings](https://github.com/invenia/BlueStyle#documentation)
|
||||
Explain the signature and output of a new API function, in a similar style to that of [Julia docstrings](https://github.com/invenia/BlueStyle#documentation)
|
||||
render: Markdown
|
||||
- type: textarea
|
||||
id: usage
|
||||
|
@ -36,15 +32,13 @@ body:
|
|||
attributes:
|
||||
label: Context
|
||||
description: |
|
||||
Tell us what you are trying to accomplish and/or how this feature would
|
||||
affect users in the "real world"
|
||||
Tell us what you are trying to accomplish and/or how this feature would affect users in the "real world"
|
||||
- type: textarea
|
||||
id: alternatives
|
||||
attributes:
|
||||
label: Alternatives
|
||||
description: |
|
||||
Explain what you're doing now, or if any other tools/packages come close
|
||||
to this feature
|
||||
Explain what you're doing now, or if any other tools/packages come close to this feature
|
||||
- type: textarea
|
||||
id: implementation
|
||||
attributes:
|
||||
|
@ -52,6 +46,4 @@ body:
|
|||
description: |
|
||||
_Optional, but highly useful_
|
||||
|
||||
If you can figure out a good entry point in the code, or have a
|
||||
one-liner that could be a good starting place, list it here. Even
|
||||
better, if you know a way to implement it, explain that here.
|
||||
If you can figure out a good entry point in the code, or have a one-liner that could be a good starting place, list it here. Even better, if you know a way to implement it, explain that here.
|
||||
|
|
10
.github/workflows/CI.yml
vendored
10
.github/workflows/CI.yml
vendored
|
@ -3,7 +3,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- master
|
||||
tags: '*'
|
||||
tags: "*"
|
||||
pull_request:
|
||||
concurrency:
|
||||
# Skip intermediate builds: always.
|
||||
|
@ -18,9 +18,9 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
version:
|
||||
- '1.6'
|
||||
- '1.7'
|
||||
- 'nightly'
|
||||
- "1.6"
|
||||
- "1.7"
|
||||
- "nightly"
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macOS-latest
|
||||
|
@ -51,7 +51,7 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
- uses: julia-actions/setup-julia@v1
|
||||
with:
|
||||
version: '1'
|
||||
version: "1"
|
||||
- uses: julia-actions/julia-buildpkg@v1
|
||||
- uses: julia-actions/julia-docdeploy@v1
|
||||
env:
|
||||
|
|
10
.vscode/extensions.json
vendored
10
.vscode/extensions.json
vendored
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"recommendations": [
|
||||
"julialang.language-julia",
|
||||
"streetsidesoftware.code-spell-checker",
|
||||
"DavidAnson.vscode-markdownlint"
|
||||
]
|
||||
"recommendations": [
|
||||
"julialang.language-julia",
|
||||
"streetsidesoftware.code-spell-checker",
|
||||
"DavidAnson.vscode-markdownlint"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -70,7 +70,7 @@ Turns into
|
|||
<h2>Julia is cool</h2>
|
||||
</header>
|
||||
<main>
|
||||
<img src="/kelpie-on-sheep-back.jpg" alt="A Kelpie herding sheep"/>
|
||||
<img src="/kelpie-on-sheep-back.jpg" alt="A Kelpie herding sheep" />
|
||||
<p>Kelpies make great herding dogs for cows.</p>
|
||||
<p>Kelpies make great herding dogs for sheep.</p>
|
||||
<p>Kelpies make great herding dogs for chickens.</p>
|
||||
|
|
10
cspell.json
10
cspell.json
|
@ -1,9 +1,5 @@
|
|||
{
|
||||
"language": "en",
|
||||
"version": "0.2",
|
||||
"words": [
|
||||
"autodocs",
|
||||
"Milliron",
|
||||
"templating"
|
||||
]
|
||||
"language": "en",
|
||||
"version": "0.2",
|
||||
"words": ["autodocs", "Milliron", "templating"]
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<!-- markdownlint-disable first-line-heading -->
|
||||
|
||||
```@meta
|
||||
CurrentModule = Kelpie
|
||||
```
|
||||
|
@ -8,6 +9,7 @@ CurrentModule = Kelpie
|
|||
Documentation for [Kelpie](https://github.com/MillironX/Kelpie.jl).
|
||||
|
||||
```@index
|
||||
|
||||
```
|
||||
|
||||
```@autodocs
|
||||
|
|
Loading…
Reference in a new issue