Skip to content
This repository has been archived by the owner on Dec 6, 2021. It is now read-only.

Latest commit

 

History

History
59 lines (52 loc) · 1.52 KB

CONTRIBUTING.md

File metadata and controls

59 lines (52 loc) · 1.52 KB

Contributing

Questions

Please ask questions in the discussions tab. Label the discussion Q&A. If you have a bug or feature request, put it in an issue.

Feedback

I have made a feedback discussion for feedback.

Debug Mode

To enter debug mode, change script.js from

// Options
enableBody: true,
// debug: true

to

// Options
enableBody: true,
debug: true

and change

abilities: {
  carrot: false,
  sword: false,
  bounceMagic: false,
  doubleJumps: false
}

to

abilities: {
  carrot: true,
  sword: true,
  bounceMagic: true,
  doubleJumps: true
}

Reports

Feature Request

Please use the Feature Request issue template. Also, be sure to add appropriate labels.

Bug Report

Use the Bug Report template.

Task Runners

I have installed a task runner called Grunt. You can run it by typing into the terminal:

node_modules/.bin/grunt

This command will automatically run JSHint.

Pull Requests

After I have approved your issue, you may create a pull request. I will review it and merge it. I have installed a Code Quality check, so the check fails, I will not review the PR. Also, make sure to add a Reset commit to disable developer mode and reset abilities, and a Fix JSHint issues commit to fix the JSHint linter issues, other than the ES6 issues.

Code of Conduct

More details in CODE_OF_CONDUCT.md.