Skip to content

Commit

Permalink
🤖 COPIERTemplate.jl update
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsiqueira committed Oct 2, 2023
1 parent c80e7c4 commit 0b30560
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ PackageOwner: abelsiqueira
PackageUUID: 5022dd56-1d41-4538-9f4c-b20739ff8283
RunJuliaNightlyOnCI: false
UseCirrusCI: false
_commit: v0.2.0
_commit: v0.2.2
_src_path: https://github.com/abelsiqueira/COPIERTemplate.jl
2 changes: 1 addition & 1 deletion docs/src/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If you found an issue that interests you, comment on that issue what your plans
If the solution to the issue is clear, you can immediately create a pull request (see below).
Otherwise, say what your proposed solution is and wait for a discussion around it.

> **tip**
> **Tip**
>
> Feel free to ping us after a few days if there are no responses.
Expand Down
20 changes: 13 additions & 7 deletions docs/src/developer.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Developer documentation

If you haven't, please read the [Contributing guidelindes](contributing.md) first.
If you haven't, please read the [Contributing guidelines](contributing.md) first.

## Linting and formatting

Expand All @@ -10,7 +10,7 @@ This will ensure that your editor is configured with important formatting settin
We use [https://pre-commit.com](https://pre-commit.com) to run the linters and formatters.
In particular, the Julia code is formatted using [JuliaFormatter.jl](https://github.com/domluna/JuliaFormatter.jl), so please install it globally first.

Install `pre-commit` (we recommend using [pipx](https://pypa.github.io/pipx/)):
To install `pre-commit`, we recommend using [pipx](https://pypa.github.io/pipx/) as follows:

```bash
# Install pipx following the link
Expand All @@ -33,9 +33,15 @@ pre-commit run -a

## First time clone

If this is the first time you work with this repository, follow the instructions below to clone the repository.

1. Fork this repo
2. Clone your repo (this will create a `git remote` called `origin`)
3. Add this repo as a remote `git remote add orgremote https://github.com/abelsiqueira/COPIERTemplate.jl`
3. Add this repo as a remote:

```bash
git remote add orgremote https://github.com/abelsiqueira/COPIERTemplate.jl
```

## Working on a new issue

Expand Down Expand Up @@ -70,9 +76,9 @@ pre-commit run -a

### Commit message

- Use imperative, present tense (Add feature, Fix bug)
- Have informative titles
- If necessary, add a body with details
- Use imperative or present tense, for instance: *Add feature* or *Fix bug*.
- Have informative titles.
- If necessary, add a body with details.

### Before creating a pull request

Expand All @@ -86,4 +92,4 @@ pre-commit run -a
git rebase orgremote/main BRANCH_NAME
```

- Then you can open a pull request and work with the reviewer to address any issues
- Then you can open a pull request and work with the reviewer to address any issues.

0 comments on commit 0b30560

Please sign in to comment.