Skip to content

Commit 6ed2492

Browse files
committed
Run pre-commit hooks #204
1 parent 3de837d commit 6ed2492

15 files changed

+175
-180
lines changed

.github/ISSUE_TEMPLATE/issue_template_feature.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Feature Issue
33
about: For new ideas, developments and features
44
title: Your title should make sense if said after "The issue is <your issue title>"
55
labels: ["status: active :construction:", "type: feature :hammer_and_wrench:"]
6-
assignees: ''
6+
assignees: ""
77
---
88

99
## Description of the issue

.github/ISSUE_TEMPLATE/issue_template_release.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ labels:
99
"type: release :rocket:",
1010
"part: github :octocat:",
1111
]
12-
assignees: 'Ludee'
12+
assignees: "Ludee"
1313
---
1414

1515
## Description of the release

.github/ISSUE_TEMPLATE/issue_template_user_kudos.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,21 @@
22
name: User Kudos Issue
33
about: User Community - Give kudos to the project
44
title: Add new user to USERS.cff
5-
labels:
5+
labels:
66
[
77
"other: good first issue :seedling:",
88
"priority: low :sloth:",
99
"type: enhancement :gear:",
1010
"part: community :earth_africa:",
1111
]
12-
assignees: ''
13-
12+
assignees: ""
1413
---
1514

1615
I thank the developers of the project. <br>
1716
Please add my information to the file [USERS.cff](https://github.com/rl-institut/super-repo/blob/production/USERS.cff).
1817

19-
family-names:
20-
given-names:
21-
alias:
22-
affiliation:
23-
orcid:
18+
family-names:
19+
given-names:
20+
alias:
21+
affiliation:
22+
orcid:

.github/pull_request_template.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Describe the findings of the discussion in the issue or meeting.
1919
## Workflow checklist
2020

2121
### Automation
22+
2223
Part of # / Closes #
2324

2425
### PR-Assignee

.github/workflows/codecov.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
name: codecov
55

6-
on:
6+
on:
77
push:
88
branches: [ production, develop ]
99

LICENSES/BSD-2-Clause.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) <year> <owner>
1+
Copyright (c) <year> <owner>
22

33
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
44

LICENSES/MIT.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1717
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1818
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1919
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

RELEASE_PROCEDURE.md

-1
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,5 @@ If you messed up, remove tags and start again
195195

196196
- https://raw.githubusercontent.com/folio-org/stripes/master/doc/release-procedure.md
197197

198-
199198
!!! note "Used Icons"
200199
🐙 GitHub | 💠 git | 📝 File | 💻 Command Line

docs/code/install/index.md

+5-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Environment (Conda)
44

5-
With conda, you can create, export, list, remove, and update environments
5+
With conda, you can create, export, list, remove, and update environments
66
that have different versions of Python and/or packages installed in them. <br>
77
Switching or moving between environments is called activating the environment.
88
You can also share an environment file and import from `requirements.txt`.
@@ -11,23 +11,20 @@ You can also share an environment file and import from `requirements.txt`.
1111
💻 `activate py310` Activate environment <br>
1212
💻 `python --version` Check python version
1313

14-
1514
## Requirements
1615

17-
In Python the `requirements.txt` file helps manage dependencies.
16+
In Python the `requirements.txt` file helps manage dependencies.
1817
It's a text file that lists the packages that the Python project depends on.
1918

2019
💻 `pip install -r requirements.txt` Install from file
2120

22-
2321
## Pyproject
2422

25-
This python package contains a `pyproject.toml` file that contains
26-
build system requirements and information, which are
27-
[used by pip](https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/)
23+
This python package contains a `pyproject.toml` file that contains
24+
build system requirements and information, which are
25+
[used by pip](https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/)
2826
to build the package.
2927
It contains the metadata of the software project.
3028

31-
3229
!!! note "Used Icons"
3330
🐙 GitHub | 💠 git | 📝 File | 💻 Command Line

docs/development/collaboration/license_and_citation.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
# License
22

3-
43
## Software License
54

65
This software is developed under an
76
[open-source license](https://en.wikipedia.org/wiki/Open-source_license). <br>
87
The selected license can be read in the
98
[LICENSE.txt](https://github.com/rl-institut/super-repo/blob/production/LICENSE.txt).
109

11-
This repository follows the [REUSE SOFTWARE](https://reuse.software/)
12-
specification.
13-
All files are explicitly stating the corresponding license and copyright information.
10+
This repository follows the [REUSE SOFTWARE](https://reuse.software/)
11+
specification.
12+
All files are explicitly stating the corresponding license and copyright information.
1413
It is implemented as GitHub workflow and pre-commit hook:
1514

1615
- GitHub workflow: [reuse.yml](https://github.com/rl-institut/super-repo/blob/feature-7-REUSE/.github/workflows/reuse.yml)

docs/development/collaboration/meeting.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
In order to develop a program collaboratively, it is helpful to regularly
44
exchange information about the current status and to discuss open questions
55
and make decisions. <br>
6-
If you want to join the meetings, please use the
6+
If you want to join the meetings, please use the
77
[GitHub Discussions](https://github.com/rl-institut/super-repo/discussions).
88

99
## Developer Meetings
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Users
22

3-
Known user of this software can be added to
4-
[USERS.cff](https://github.com/rl-institut/super-repo/blob/production/USERS.cff)
3+
Known user of this software can be added to
4+
[USERS.cff](https://github.com/rl-institut/super-repo/blob/production/USERS.cff)
55
for reference.

0 commit comments

Comments
 (0)