2017-05-17 04:02:07 +08:00
|
|
|
# Contributing
|
|
|
|
|
|
|
|
Welcome stranger!
|
|
|
|
|
|
|
|
If you have come here to learn how to contribute to mdBook, we have some tips for you!
|
|
|
|
|
2017-05-18 00:36:52 +08:00
|
|
|
First of all, don't hesitate to ask questions!
|
2019-10-29 21:04:16 +08:00
|
|
|
Use the [issue tracker](https://github.com/rust-lang/mdBook/issues), no question is too simple.
|
2017-11-22 18:35:18 +08:00
|
|
|
If we don't respond in a couple of days, ping us @Michael-F-Bryan, @budziq, @steveklabnik, @frewsxcv it might just be that we forgot. :wink:
|
2017-05-17 04:02:07 +08:00
|
|
|
|
|
|
|
### Issues to work on
|
|
|
|
|
2017-05-18 00:36:52 +08:00
|
|
|
Any issue is up for the grabbing, but if you are starting out, you might be interested in the
|
2019-10-29 21:04:16 +08:00
|
|
|
[E-Easy issues](https://github.com/rust-lang/mdBook/issues?q=is%3Aopen+is%3Aissue+label%3AE-Easy).
|
2017-05-18 00:36:52 +08:00
|
|
|
Those are issues that are considered more straightforward for beginners to Rust or the codebase itself.
|
|
|
|
These issues can be a good launching pad for more involved issues. Easy tasks for a first time contribution
|
|
|
|
include documentation improvements, new tests, examples, updating dependencies, etc.
|
2017-05-17 04:02:07 +08:00
|
|
|
|
2017-05-18 00:36:52 +08:00
|
|
|
If you come from a web development background, you might be interested in issues related to web technologies tagged
|
2019-10-29 21:04:16 +08:00
|
|
|
[A-JavaScript](https://github.com/rust-lang/mdBook/issues?q=is%3Aopen+is%3Aissue+label%3AA-JavaScript),
|
|
|
|
[A-Style](https://github.com/rust-lang/mdBook/issues?q=is%3Aopen+is%3Aissue+label%3AA-Style),
|
|
|
|
[A-HTML](https://github.com/rust-lang/mdBook/issues?q=is%3Aopen+is%3Aissue+label%3AA-HTML) or
|
|
|
|
[A-Mobile](https://github.com/rust-lang/mdBook/issues?q=is%3Aopen+is%3Aissue+label%3AA-Mobile).
|
2017-05-17 04:02:07 +08:00
|
|
|
|
2017-05-18 00:36:52 +08:00
|
|
|
When you decide you want to work on a specific issue, ping us on that issue so that we can assign it to you.
|
|
|
|
Again, do not hesitate to ask questions. We will gladly mentor anyone that want to tackle an issue.
|
2017-05-17 04:02:07 +08:00
|
|
|
|
|
|
|
Issues on the issue tracker are categorized with the following labels:
|
|
|
|
|
|
|
|
- **A**-prefixed labels state which area of the project an issue relates to.
|
|
|
|
- **E**-prefixed labels show an estimate of the experience necessary to fix the issue.
|
|
|
|
- **M**-prefixed labels are meta-issues used for questions, discussions, or tracking issues
|
|
|
|
- **S**-prefixed labels show the status of the issue
|
|
|
|
- **T**-prefixed labels show the type of issue
|
|
|
|
|
|
|
|
### Building mdBook
|
2017-05-18 00:36:52 +08:00
|
|
|
|
2017-05-17 04:02:07 +08:00
|
|
|
mdBook builds on stable Rust, if you want to build mdBook from source, here are the steps to follow:
|
|
|
|
|
|
|
|
1. Navigate to the directory of your choice
|
|
|
|
0. Clone this repository with git.
|
2017-05-18 00:36:52 +08:00
|
|
|
|
2017-05-17 04:02:07 +08:00
|
|
|
```
|
2019-10-29 21:04:16 +08:00
|
|
|
git clone https://github.com/rust-lang/mdBook.git
|
2017-05-17 04:02:07 +08:00
|
|
|
```
|
|
|
|
0. Navigate into the newly created `mdBook` directory
|
|
|
|
0. Run `cargo build`
|
|
|
|
|
|
|
|
The resulting binary can be found in `mdBook/target/debug/` under the name `mdBook` or `mdBook.exe`.
|
|
|
|
|
2018-09-16 14:39:18 +08:00
|
|
|
### Code Quality
|
|
|
|
|
|
|
|
We love code quality and Rust has some excellent tools to assist you with contributions.
|
|
|
|
|
|
|
|
#### Formatting Code with rustfmt
|
|
|
|
|
|
|
|
Before you make your Pull Request to the project, please run it through the `rustfmt` utility.
|
|
|
|
This will ensure we have good quality source code that is better for us all to maintain.
|
|
|
|
|
2019-10-29 21:04:16 +08:00
|
|
|
[rustfmt](https://github.com/rust-lang/rustfmt) has a lot more information on the project.
|
2018-09-16 14:39:18 +08:00
|
|
|
The quick guide is
|
|
|
|
|
|
|
|
1. Install it
|
|
|
|
```
|
2018-12-08 20:48:59 +08:00
|
|
|
rustup component add rustfmt
|
2018-09-16 14:39:18 +08:00
|
|
|
```
|
|
|
|
1. You can now run `rustfmt` on a single file simply by...
|
|
|
|
```
|
|
|
|
rustfmt src/path/to/your/file.rs
|
|
|
|
```
|
|
|
|
... or you can format the entire project with
|
|
|
|
```
|
|
|
|
cargo fmt
|
|
|
|
```
|
|
|
|
When run through `cargo` it will format all bin and lib files in the current crate.
|
|
|
|
|
2019-10-29 21:04:16 +08:00
|
|
|
For more information, such as running it from your favourite editor, please see the `rustfmt` project. [rustfmt](https://github.com/rust-lang/rustfmt)
|
2018-09-16 14:39:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
#### Finding Issues with Clippy
|
|
|
|
|
2021-05-21 18:56:32 +08:00
|
|
|
Clippy is a code analyser/linter detecting mistakes, and therefore helps to improve your code.
|
2018-09-16 14:39:18 +08:00
|
|
|
Like formatting your code with `rustfmt`, running clippy regularly and before your Pull Request will
|
|
|
|
help us maintain awesome code.
|
|
|
|
|
2019-10-29 21:04:16 +08:00
|
|
|
The best documentation can be found over at [rust-clippy](https://github.com/rust-lang/rust-clippy)
|
2018-09-16 14:39:18 +08:00
|
|
|
|
|
|
|
1. To install
|
|
|
|
```
|
2018-12-08 20:48:59 +08:00
|
|
|
rustup component add clippy
|
2018-09-16 14:39:18 +08:00
|
|
|
```
|
|
|
|
2. Running clippy
|
|
|
|
```
|
2018-12-08 20:48:59 +08:00
|
|
|
cargo clippy
|
2018-09-16 14:39:18 +08:00
|
|
|
```
|
|
|
|
|
2019-10-29 21:04:16 +08:00
|
|
|
Clippy has an ever growing list of checks, that are managed in [lint files](https://rust-lang.github.io/rust-clippy/master/index.html).
|
2018-09-16 14:39:18 +08:00
|
|
|
|
2017-05-17 04:02:07 +08:00
|
|
|
### Making a pull-request
|
|
|
|
|
2017-05-18 00:36:52 +08:00
|
|
|
When you feel comfortable that your changes could be integrated into mdBook, you can create a pull-request on GitHub.
|
|
|
|
One of the core maintainers will then approve the changes or request some changes before it gets merged.
|
2017-05-17 04:02:07 +08:00
|
|
|
|
2017-05-18 00:36:52 +08:00
|
|
|
If you want to make your pull-request even better, you might want to run [Clippy](https://github.com/Manishearth/rust-clippy)
|
2019-10-29 21:04:16 +08:00
|
|
|
and [rustfmt](https://github.com/rust-lang/rustfmt) on the code first.
|
2017-05-18 00:36:52 +08:00
|
|
|
This is not a requirement though and will never block a pull-request from being merged.
|
2017-05-17 04:02:07 +08:00
|
|
|
|
|
|
|
That's it, happy contributions! :tada: :tada: :tada:
|