841 B
841 B
Contributing
How to contribute
Start by opening an issue using one of the issue templates, or propose a change by submitting a pull request. Please include a detailed pull request description.
Running the project
- Make sure you have nvm installed
- Change directory to the root of the project
- Select Node version with
nvm use
- Install Node packages:
npm install
- Install Java version >= 8
- Build Java executables:
npm run compile:java
Now open the root of the project in VS Code, click on the Debug panel, and select either "Run Extension" or any of the test launch configurations.
Code style
Prettier is used to lint & format the code. The builds will not pass if there are linting issues.
- Lint:
npm run lint
- Format:
npm run format