-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 50c1eb7
Showing
4 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Contribution guidelines | ||
|
||
### General | ||
|
||
- The author is strongly opinionated about every aspect of coding, which is why | ||
this project exists. Your contribution is always appreciated, but not always | ||
accepted. | ||
- If you want to contribute, you might better open an issue first, so we can | ||
discuss the changes before you start working on them. | ||
|
||
### Code | ||
|
||
- Commit messages MUST follow the | ||
[Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) | ||
specification to be merged into the base branch. | ||
- Your pull request MAY contain commits that do not follow the specification. If | ||
it does, the author will squash them before merging without further notice. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: hasundue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "@chiezo/bddoc", | ||
"version": "0.0.0", | ||
"exports": { | ||
".": "./mod.ts" | ||
}, | ||
"publish": { | ||
"exclude": [ | ||
".github", | ||
"**/*_test.ts" | ||
] | ||
}, | ||
"tasks": { | ||
"check": "deno fmt -q && deno lint -q && deno check -q **/*.ts", | ||
"test": "deno test --allow-read --allow-write=/tmp --no-check", | ||
"pre-commit": "deno task check && deno task test" | ||
} | ||
} |
Empty file.