Skip to main content
Module

x/memoization/CONTRIBUTING.md

Memoization tools, TC39 proposal-function-memo implementation
Latest
File

Contributing

We welcome and appreciate all contributions.

We follow the code of conduct.

Submitting a pull request

Before submitting a PR to any of the repos, please make sure the following is done:

  1. Give the PR a descriptive title
  2. Run fmt in the root of repository
  3. Run lint
  4. Run test

Coding rules

We follow the style guide.

Source code

To ensure consistency and quality throughout the source code, all code modifications must have:

Format

This will format all of the code to adhere to the consistent style in the repository.

deno fmt

Lint

This will check TypeScript code for common mistakes and errors.

deno lint

Test

This will run all logic test and document test.

deno test --import-map=./_test_import_map.json --doc

or

deno task test

Commit message guidelines

Each commit message consists of a header, a body and a footer. The header has a special format that includes a type, a scope and a subject:

<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>

The header is mandatory and the scope of the header is optional.

The footer can contain a closing reference to an issue.

Type

The type must be one of the following:

Type Description
build Changes that affect the build system or external dependencies
ci Changes to our CI configuration files and scripts
docs Documentation only changes
feat A new feature
fix A bug fix
perf A code change that improves performance
refactor A code change that neither fixes a bug nor adds a feature
style Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
test Adding missing tests or correcting existing tests

Subject

The subject contains succinct description of the change:

  • use the imperative, present tense: “change” not “changed” nor “changes”
  • don’t capitalize first letter
  • no dot (.) at the end

Body

Just as in the subject, use the imperative, present tense: “change” not “changed” nor “changes”. The body should include the motivation for the change and contrast this with previous behavior.

The footer should contain any information about Breaking Changes and is also the place to reference GitHub issues that this commit Closes.

Breaking Changes should start with the word BREAKING CHANGE: with a space or two newlines. The rest of the commit message is then used for this.

Examples

fix(pencil): stop graphite breaking when too much pressure applied
feat(pencil): add 'graphiteWidth' option

Fix #42
perf(pencil): remove graphiteWidth option

BREAKING CHANGE: The graphiteWidth option has been removed.

The default graphite width of 10mm is always used for performance reasons.