From 9ba531caf863c75d4eaf37687a144b0769569673 Mon Sep 17 00:00:00 2001 From: boomzero Date: Sun, 31 Dec 2023 20:33:33 +0800 Subject: [PATCH 1/2] upd docs --- CONTRIBUTING.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 65544d0..3860b22 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -69,3 +69,19 @@ If you forgot to do this and have not yet pushed your changes to the remote repository, you can amend your commit with the sign-off by running git commit --amend -s + +## Submit a Pull Request +Please submit a pull request with a clear list of what you've done. We can +always use more test coverage. Please follow our coding conventions (below) and +make sure all of your commits are atomic (one feature per commit). +Please submit pull requests to the `next` branch. + +## Coding Conventions + +Your code should pass `deno fmt` and `deno lint`. You can run them using: + +```bash +deno fmt +deno lint +``` + From 93104ae3108ec980a11194b766423df7e9c9447a Mon Sep 17 00:00:00 2001 From: boomzero Date: Sun, 31 Dec 2023 20:36:15 +0800 Subject: [PATCH 2/2] fmt --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3860b22..19e0c41 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -71,10 +71,11 @@ repository, you can amend your commit with the sign-off by running git commit --amend -s ## Submit a Pull Request + Please submit a pull request with a clear list of what you've done. We can always use more test coverage. Please follow our coding conventions (below) and -make sure all of your commits are atomic (one feature per commit). -Please submit pull requests to the `next` branch. +make sure all of your commits are atomic (one feature per commit). Please submit +pull requests to the `next` branch. ## Coding Conventions @@ -84,4 +85,3 @@ Your code should pass `deno fmt` and `deno lint`. You can run them using: deno fmt deno lint ``` -