diff options
-rw-r--r-- | .github/FUNDING.yml | 12 | ||||
-rw-r--r-- | docs/dev/style.md | 3 |
2 files changed, 3 insertions, 12 deletions
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index d78a14e2c..73892ddaa 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml | |||
@@ -1,12 +1,2 @@ | |||
1 | # These are supported funding model platforms | 1 | github: rust-analyzer |
2 | |||
3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] | ||
4 | patreon: # Replace with a single Patreon username | ||
5 | open_collective: rust-analyzer | 2 | open_collective: rust-analyzer |
6 | ko_fi: # Replace with a single Ko-fi username | ||
7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel | ||
8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | ||
9 | liberapay: # Replace with a single Liberapay username | ||
10 | issuehunt: # Replace with a single IssueHunt username | ||
11 | otechie: # Replace with a single Otechie username | ||
12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] | ||
diff --git a/docs/dev/style.md b/docs/dev/style.md index 2454087e8..44f0956c2 100644 --- a/docs/dev/style.md +++ b/docs/dev/style.md | |||
@@ -239,8 +239,9 @@ If the line is too long, you want to split the sentence in two :-) | |||
239 | # Commit Style | 239 | # Commit Style |
240 | 240 | ||
241 | We don't have specific rules around git history hygiene. | 241 | We don't have specific rules around git history hygiene. |
242 | Maintaining clean git history is encouraged, but not enforced. | 242 | Maintaining clean git history is strongly encouraged, but not enforced. |
243 | Use rebase workflow, it's OK to rewrite history during PR review process. | 243 | Use rebase workflow, it's OK to rewrite history during PR review process. |
244 | After you are happy with the state of the code, please use [interactive rebase](https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History) to squash fixup commits. | ||
244 | 245 | ||
245 | Avoid @mentioning people in commit messages and pull request descriptions(they are added to commit message by bors). | 246 | Avoid @mentioning people in commit messages and pull request descriptions(they are added to commit message by bors). |
246 | Such messages create a lot of duplicate notification traffic during rebases. | 247 | Such messages create a lot of duplicate notification traffic during rebases. |