From f0f1ee129e6fcc5f06c613f9aec07e7e23fbaca7 Mon Sep 17 00:00:00 2001 From: ClementTsang Date: Fri, 28 Feb 2020 01:12:45 -0500 Subject: [PATCH] Minor side update * Update PR template to be a bit more specific * Update README to state what version of rust I dev on in contributions * Update rustfmt to remove another unstable line --- .github/pull_request_template.md | 3 ++- README.md | 2 +- rustfmt.toml | 1 - 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 04b4e337..0f4b7955 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -14,6 +14,7 @@ _Remove the irrelevant one:_ - [x] Bug fix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) +- [x] Other (something else) ## Test methodology @@ -24,7 +25,7 @@ _Please state how this was tested:_ _Please ensure all are ticked (and actually done):_ - [ ] Change has been tested to work -- [ ] Code has been linted using rustfmt +- [ ] Areas your change affects has been linted using rustfmt - [ ] Code has been self-reviewed - [ ] Code has been tested and no new breakage is introduced - [ ] Documentation has been added/updated if needed diff --git a/README.md b/README.md index 487ce596..64794241 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,7 @@ Note that `q` is disabled while in the search widget. ## Contribution -Contribution is welcome! Just submit a PR. +Contribution is welcome! Just submit a PR. Note that I develop and test on stable Rust. If you spot any issue with nobody assigned to it, or it seems like no work has started on it, feel free to try and do it! diff --git a/rustfmt.toml b/rustfmt.toml index eefab4d3..c7c801a9 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -11,4 +11,3 @@ reorder_modules = true reorder_impl_items = true tab_spaces = 4 format_strings = true -space_after_colon = true