1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# Contributing to bqplot
## Conforming with linters
This projects uses both [eslint](https://eslint.org/) and [prettier](https://github.com/prettier/prettier) and the plugin that creates the integration between both, [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) to lint its code.
Currently there has been an active effort on making the project comply to all eslint rules so the eslint rules are currently not enforced.
Prettier rules are enforced though and you can run them in the `js` folder with:
```bash
yarn prettier --write .
```
The configuration of this project linters were based in the [widgets-cookiecutter](https://github.com/jupyter-widgets/widget-ts-cookiecutter/tree/master/%7B%7Bcookiecutter.github_project_name%7D%7D).
## Governance and code of conduct
Bqplot is subject to the [bqplot governance](https://github.com/bqplot/governance/blob/master/governance.md) and the [bqplot code of conduct](https://github.com/bqplot/governance/blob/master/code_of_conduct.md).
## Questions
Should you have any question, please do not hesitate to reach out to us on the [ipywidgets gitter chat](https://gitter.im/jupyter-widgets/Lobby).
## Help / Documentation
- API reference documentation: [](http://bqplot.readthedocs.org/en/stable/) [](http://bqplot.readthedocs.org/en/latest/)
- Talk to us on the `ipywidgets` Gitter chat: [](https://gitter.im/ipython/ipywidgets?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|