Skip to content

Commit

Permalink
chore: init project
Browse files Browse the repository at this point in the history
  • Loading branch information
hasundue committed May 31, 2024
0 parents commit 50c1eb7
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/CONTRIBUTING.md
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.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: hasundue
18 changes: 18 additions & 0 deletions deno.json
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 added mod.ts
Empty file.

0 comments on commit 50c1eb7

Please sign in to comment.