We openly welcome contributions as open source is always better as a team effort. We simply ask that all contributors start by reading this guide.
The first thing you'll need to do is fork this project. Once that is complete you can run the following script in the directory in which you want to clone this project, replacing <USERNAME>
with the Github username in which you forked this repository under.
HTTPS
git clone https://github.com/<USERNAME>/eslint-config-lintly.git
cd eslint-config-lintly
git remote add upstream https://github.com/dogma-io/eslint-config-lintly.git
SSH
git clone [email protected]:<USERNAME>/eslint-config-lintly.git
cd eslint-config-lintly
git remote add upstream [email protected]:dogma-io/eslint-config-lintly.git
Once you've cloned the project with one of the above you can run either yarn install
or npm install
from the root project directory, depending on which package manager you prefer. At this point you are ready to begin running tests and hacking away to add awesome new features or fix any bugs you come across.
To run the entire test suite simply run the following command:
npm
npm test
yarn
yarn test
Note: This command runs linting and unit tests. If you want to just run one of these you can use the below commands:
npm
$(npm bin)/eslint src # linting
$(npm bin)/jest # unit tests
yarn
yarn run eslint src # linting
yarn run jest # unit tests
After you've run the test suite you can view the code coverage by running:
open coverage/lcov-report/index.html
Pull requests should be kept as small as possible, fixing a single bug or adding a single piece of functionality. If you plan to address multiple bugs or add multiple features please submit each one in a separate pull request. Before you submit a pull request make sure you adhere to these guidelines:
- If you are fixing a bug you should add tests that fail without the fix applied and pass with the fix applied.
- If you are adding new functionality you should add full test coverage of the new functionality as well as update the docs as necessary.
- Before your pull request is landed all commits in your pull request should be squashed into a single commit.
- If this is your first contribution to the project make sure to add yourself to the contributors section of the package.json.
By contributing to this project, you agree that your contributions will be licensed under this project's MIT license.