Skip to content

Contributing Guide

Karthik Nadig edited this page Aug 9, 2023 · 3 revisions

Requirements

You will need the following tools and packages:

  • NodeJs : 16.17.0
  • Npm : 8.5.0
  • python 3.7 : This is needed for bundled libs

Getting the project ready

  • Create virtual environment, activate it, and install packages:

    • python -m pip install nox flake8 autopep8
    • python -m pip install -r src/test/python_tests/requirements.txt
    • nox --session bundled_libs_install
  • Install npm packages by running npm install ci

Your project should now be ready to run and debug.

Formatting Server

Most of the linting code is in bundled/tool/lsp_server.py, look in that file for examples on how to work with Language Server Protocol. This file is launched by VS Code, this launch configuration is in src/common/server.ts. These two files are the main files needed for this project to work.

Settings needed for this project are defined in package.json. These settings are generically read and passed to lsp_server.py via language server protocol. Settings are read in src/common/settings.ts and passed to server in server.ts.

Testing

To test the format server, we have a custom LSP client. See src/test/python_tests/test_formatting.py for examples on how to write tests for this project.

Clone this wiki locally