Skip to content

Commit 0c0419e

Browse files
authored
Add table of contents to contributing.md and re-arrange sligthly. (JuliaLang#57575)
- **Add TOC to contributing.md** - **Re-arrange TOC** - **Move sections according to TOC movement** - **Remove H4 headings from TOC**
1 parent 6b5bdc2 commit 0c0419e

File tree

1 file changed

+41
-20
lines changed

1 file changed

+41
-20
lines changed

CONTRIBUTING.md

+41-20
Original file line numberDiff line numberDiff line change
@@ -4,37 +4,40 @@ Hi! If you are new to the Julia community: welcome, and thanks for trying Julia.
44

55
If you are already familiar with Julia itself, this blog post by Katharine Hyatt on [Making your first Julia pull request](https://kshyatt.github.io/post/firstjuliapr/) is a great way to get started.
66

7-
## Learning Julia
8-
9-
[The learning page](https://julialang.org/learning) has a great list of resources for new and experienced users alike.
10-
11-
## Before filing an issue
12-
13-
- Reporting a potential bug? Please read the "[How to file a bug report](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md#how-to-file-a-bug-report)" section to make sure that all necessary information is included.
147

15-
- Contributing code? Be sure to review the [contributor checklist](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md#contributor-checklist) for helpful tips on the tools we use to build Julia.
8+
# Table of Contents
169

17-
- Library feature requests are generally not accepted on this issue tracker. New libraries should be developed as [packages](https://julialang.github.io/Pkg.jl/v1/creating-packages/). Discuss ideas for libraries at the [Julia Discourse forum](https://discourse.julialang.org). Doing so will often lead to pointers to existing projects and bring together collaborators with common interests.
10+
1. [Learning Julia](#learning-julia)
11+
2. [Filing an issue](#filing-an-issue)
12+
- [Before filing an issue](#before-filing-an-issue)
13+
- [How to file a bug report](#how-to-file-a-bug-report)
14+
3. [Submitting contributions](#submitting-contributions)
15+
- [Contributor Checklist](#contributor-checklist)
16+
- [Writing tests](#writing-tests)
17+
- [Improving documentation](#improving-documentation)
18+
- [Contributing to core functionality or base libraries](#contributing-to-core-functionality-or-base-libraries)
19+
- [Contributing to the standard library](#contributing-to-the-standard-library)
20+
- [Contributing to patch releases](#contributing-to-patch-releases)
21+
- [Code Formatting Guidelines](#code-formatting-guidelines)
22+
- [Git Recommendations For Pull Requests](#git-recommendations-for-pull-requests)
23+
4. [Resources](#resources)
1824

19-
## Contributor Checklist
20-
21-
* Create a [GitHub account](https://github.com/signup/free).
2225

23-
* [Fork Julia](https://github.com/JuliaLang/julia/fork).
26+
## Learning Julia
2427

25-
* Build the software and libraries (the first time takes a while, but it's fast after that). Detailed build instructions are in the [README](https://github.com/JuliaLang/julia/tree/master/README.md). Julia depends on several external packages; most are automatically downloaded and installed, but are less frequently updated than Julia itself.
28+
[The learning page](https://julialang.org/learning) has a great list of resources for new and experienced users alike.
2629

27-
* Keep Julia current. Julia is a fast-moving target, and many details of the language are still settling out. Keep the repository up-to-date and rebase work-in-progress frequently to make merges simpler.
30+
## Filing an issue
2831

29-
* Learn to use [git](https://git-scm.com), the version control system used by GitHub and the Julia project. Try a tutorial such as the one [provided by GitHub](https://try.GitHub.io/levels/1/challenges/1).
32+
### Before filing an issue
3033

31-
* Review discussions on the [Julia Discourse forum](https://discourse.julialang.org).
34+
- Reporting a potential bug? Please read the "[How to file a bug report](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md#how-to-file-a-bug-report)" section to make sure that all necessary information is included.
3235

33-
* For more detailed tips, read the [submission guide](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md#submitting-contributions) below.
36+
- Contributing code? Be sure to review the [contributor checklist](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md#contributor-checklist) for helpful tips on the tools we use to build Julia.
3437

35-
* Relax and have fun!
38+
- Library feature requests are generally not accepted on this issue tracker. New libraries should be developed as [packages](https://julialang.github.io/Pkg.jl/v1/creating-packages/). Discuss ideas for libraries at the [Julia Discourse forum](https://discourse.julialang.org). Doing so will often lead to pointers to existing projects and bring together collaborators with common interests.
3639

37-
## How to file a bug report
40+
### How to file a bug report
3841

3942
A useful bug report filed as a GitHub issue provides information about how to reproduce the error.
4043

@@ -56,6 +59,24 @@ A useful bug report filed as a GitHub issue provides information about how to re
5659

5760
## Submitting contributions
5861

62+
### Contributor Checklist
63+
64+
* Create a [GitHub account](https://github.com/signup/free).
65+
66+
* [Fork Julia](https://github.com/JuliaLang/julia/fork).
67+
68+
* Build the software and libraries (the first time takes a while, but it's fast after that). Detailed build instructions are in the [README](https://github.com/JuliaLang/julia/tree/master/README.md). Julia depends on several external packages; most are automatically downloaded and installed, but are less frequently updated than Julia itself.
69+
70+
* Keep Julia current. Julia is a fast-moving target, and many details of the language are still settling out. Keep the repository up-to-date and rebase work-in-progress frequently to make merges simpler.
71+
72+
* Learn to use [git](https://git-scm.com), the version control system used by GitHub and the Julia project. Try a tutorial such as the one [provided by GitHub](https://try.GitHub.io/levels/1/challenges/1).
73+
74+
* Review discussions on the [Julia Discourse forum](https://discourse.julialang.org).
75+
76+
* For more detailed tips, read the [submission guide](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md#submitting-contributions) below.
77+
78+
* Relax and have fun!
79+
5980
### Writing tests
6081

6182
There are never enough tests. Track [code coverage at Codecov](https://codecov.io/github/JuliaLang/julia), and help improve it.

0 commit comments

Comments
 (0)