Skip to content

Commit 082dd3e

Browse files
committed
init
0 parents  commit 082dd3e

39 files changed

+1175
-0
lines changed

.JuliaFormatter.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
indent = 4
2+
margin = 92
3+
normalize_line_endings = "unix"

.all-contributorsrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projectName": "MakieStippling",
3+
"projectOwner": "s-ccs",
4+
"files": ["README.md", "docs/src/index.md"]
5+
}

.copier-answers.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Changes here will be overwritten by Copier
2+
AddCopierCI: false
3+
AnswerStrategy: recommended-ask
4+
Authors: Benedikt Ehinger <[email protected]>
5+
CheckExplicitImports: false
6+
CodeOfConductContact: [email protected]
7+
ConfigIndentation: 2
8+
JuliaIndentation: 4
9+
JuliaMinVersion: '1.10'
10+
License: MIT
11+
LicenseCopyrightHolders: Benedikt Ehinger
12+
MarkdownIndentation: 2
13+
PackageName: MakieStippling
14+
PackageOwner: s-ccs
15+
PackageUUID: a2bd6b23-9ae5-5b43-94df-c047a0516ae5
16+
RunJuliaNightlyOnCI: false
17+
UseCirrusCI: false
18+
_commit: v0.14.1
19+
_src_path: https://github.com/JuliaBesties/BestieTemplate.jl

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
end_of_line = lf
6+
insert_final_newline = true
7+
charset = utf-8
8+
indent_style = space
9+
trim_trailing_whitespace = true
10+
11+
[*.jl]
12+
indent_size = 4
13+
14+
[*.md]
15+
indent_size = 2
16+
17+
[*.{yml,toml,json}]
18+
indent_size = 2
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Bug Report
2+
description: File a bug report related to running the package
3+
title: "[Bug] "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
11+
Please, before submitting, make sure that:
12+
13+
- There is not an [existing issue](https://github.com/s-ccs/MakieStippling.jl/issues) with the same question
14+
- You have read the [contributing guide](https://s-ccs.github.io/MakieStippling.jl/dev/90-contributing/)
15+
- You are following the [code of conduct](https://github.com/s-ccs/MakieStippling.jl/blob/main/CODE_OF_CONDUCT.md)
16+
The form below should help you in filling out this issue.
17+
- type: textarea
18+
id: description
19+
attributes:
20+
label: Description
21+
description: Describe the bug
22+
validations:
23+
required: true
24+
- type: input
25+
id: pkg-version
26+
attributes:
27+
label: Package Version
28+
description: What version of the package are you running?
29+
validations:
30+
required: true
31+
- type: input
32+
id: version
33+
attributes:
34+
label: Julia Version
35+
description: What version of Julia are you running?
36+
validations:
37+
required: true
38+
- type: textarea
39+
id: reproduction
40+
attributes:
41+
label: Reproduction steps
42+
description: What steps led to the bug happening? Please provide a minimal reproducible example.
43+
validations:
44+
required: true
45+
- type: textarea
46+
id: logs
47+
attributes:
48+
label: Relevant log output
49+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
50+
render: shell
51+
- type: dropdown
52+
id: os
53+
attributes:
54+
label: "Operating System"
55+
description: What is the impacted environment?
56+
multiple: true
57+
options:
58+
- Windows
59+
- Linux
60+
- Mac
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: "Feature Request"
2+
description: Suggest a new feature for the package
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Thanks for taking the time to fill out this feature request!
8+
9+
Please, before submitting, make sure that:
10+
11+
- There is not an [existing issue](https://github.com/s-ccs/MakieStippling.jl/issues) with the same question
12+
- You have read the [contributing guide](https://s-ccs.github.io/MakieStippling.jl/dev/90-contributing/)
13+
- You are following the [code of conduct](https://github.com/s-ccs/MakieStippling.jl/blob/main/CODE_OF_CONDUCT.md)
14+
The form below should help you in filling out this issue.
15+
- type: textarea
16+
id: description
17+
attributes:
18+
label: Description
19+
description: Describe the requested feature
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: validation
24+
attributes:
25+
label: Validation and testing
26+
description: How could we verify that the new feature works? What kind of tests can be done?
27+
- type: textarea
28+
id: motivation
29+
attributes:
30+
label: Motivation
31+
description: Explain why this feature is relevant
32+
- type: textarea
33+
id: target
34+
attributes:
35+
label: Target audience
36+
description: Tell more about the users of this feature, or where it could be useful
37+
- type: textarea
38+
id: can-help
39+
attributes:
40+
label: Can you help?
41+
description: Can you help developing this feature?
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "Usage question"
2+
description: Questions related to the usage
3+
labels: ["documentation"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this question!
9+
10+
Please, before submitting, make sure that:
11+
12+
- You have checked the [documentation](https://s-ccs.github.io/MakieStippling.jl) and haven't found enough information
13+
- There is not an [existing issue](https://github.com/s-ccs/MakieStippling.jl/issues) with the same question
14+
- You have read the [contributing guide](https://s-ccs.github.io/MakieStippling.jl/dev/90-contributing/)
15+
- You are following the [code of conduct](https://github.com/s-ccs/MakieStippling.jl/blob/main/CODE_OF_CONDUCT.md)
16+
The form below should help you in filling out this issue.
17+
- type: textarea
18+
id: description
19+
attributes:
20+
label: Description
21+
description: Write your question
22+
validations:
23+
required: true
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "General issue"
2+
description: In case none of the others templates apply
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Thanks for taking the time to fill out this issue!
8+
9+
Please, before submitting, make sure that:
10+
11+
- There is not an [existing issue](https://github.com/s-ccs/MakieStippling.jl/issues) with the same question
12+
- You have read the [contributing guide](https://s-ccs.github.io/MakieStippling.jl/dev/90-contributing/)
13+
- You are following the [code of conduct](https://github.com/s-ccs/MakieStippling.jl/blob/main/CODE_OF_CONDUCT.md)
14+
The form below should help you in filling out this issue.
15+
- type: textarea
16+
id: description
17+
attributes:
18+
label: Description
19+
description: Describe the issue
20+
validations:
21+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Discussions
4+
url: https://github.com/s-ccs/MakieStippling.jl/discussions
5+
about: Create and follow discussions here

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!--
2+
Thanks for making a pull request to MakieStippling.jl.
3+
We have added this PR template to help you help us.
4+
Make sure to read the contributing guidelines and abide by the code of conduct.
5+
See the comments below, fill the required fields, and check the items.
6+
-->
7+
8+
## Related issues
9+
10+
<!-- We normally work with (i) create issue; (ii) discussion if necessary; (iii) create PR. So, at least one of the following should be true:-->
11+
12+
<!-- Option 1, this closes an existing issue. Fill the number below-->
13+
Closes #
14+
15+
<!-- Option 2, this is a small fix that arguably won't need an issue. Uncomment below -->
16+
<!--
17+
There is no related issue.
18+
-->
19+
20+
## Checklist
21+
22+
<!-- mark true if NA -->
23+
<!-- leave PR as draft until all is checked -->
24+
- [ ] I am following the [contributing guidelines](https://github.com/s-ccs/MakieStippling.jl/blob/main/docs/src/90-contributing.md)
25+
- [ ] Tests are passing
26+
- [ ] Lint workflow is passing
27+
- [ ] Docs were updated and workflow is passing

0 commit comments

Comments
 (0)