Skip to content

Latest commit

 

History

History
183 lines (120 loc) · 6.93 KB

CONTRIBUTING.md

File metadata and controls

183 lines (120 loc) · 6.93 KB

Contributing

We can use help in a bunch of areas and any help is appreciated. Our GitHub issues serve as a place for any discussion, whether it's bug reports, questions, project direction etc. As the project grows this policy may change.

Our Discord server is open for help and more adhoc discussion. All activity on the Discord is still moderated and will be strictly enforced under the project's Code of Conduct.

Getting Started

Building this project requires a stable Rust toolchain, which can be installed using rustup.

Clone the repository and navigate to the tools directory:

git clone https://github.com/rome/tools
cd tools

Compile all packages and dependencies:

cargo build

Rome can be used via the rome bin in the rome_cli package:

cargo run --bin rome -- --help

Rome can be used as a language server by following the instructions below.

Language Server and VS Code Extension Development

The Rome language server is the binary crate rome_lsp which can be built using:

cargo build --bin rome_lsp

If benchmarking the language server, be sure to build with the --release flag.

The VS Code extension can be installed from the Marketplace and can be used with a development build of the language server by setting the "rome.lspBin" VS Code setting to the path of the binary:

	"rome.lspBin": "/path/to/rome/target/debug/rome_lsp"

To instead build the VS Code extension from source, navigate to the editors/vscode directory and run:

npm install
npm run build

This will create a rome_lsp.vsix which you can install into VS Code by running:

npm run install-extension

The "rome.lspBin" VS Code setting will still need to be set as described above.

User files

If files specific to your local development environment should be ignored, please add these files to a global git ignore file rather than to a git ignore file within Rome.

You can find more information on this process here.

Website

The Rome website is built with Eleventy. To start a development server you can run the following commands:

cd website
npm install
npm start

Checks

  • cargo lint is a cargo alias that runs `clippy' - rust official linter - under the hood;
  • cargo format is a cargo alias that runs rust-fmt - rust official formatter - under the hood;
  • cargo test will run the suite; make sure to run this command from the root of the project, so it will run the tests of all the internal crates;

Generated files

If you work on some parser and you create new nodes or modify existing ones, will need to run a command to update some files that are auto-generated.

cargo codegen grammar

This command will update the syntax of the parsers.

The source is generated from the ungram files.

cargo codegen test

This command will create new tests for your parser. We currently have a neat infrastructure where tests for parser are generated com inline comments found inside the source code. Please read the proper chapter for more information

It's strongly advised to run this command before committing new changes.

cargo coverage

This command will check and report parser conformance against different test suites. We currently target the Official ECMAScript Conformance Test Suite and the Typescript Test Suite

The test suites are included as git submodules and can be pulled using:

git submodule update --init --recursive

Commit messages

Internally, the Rome team adheres as closely as possible to the conventional commit specification. The following this convention encourages commit best-practices and facilitates commit-powered features like change log generation.

The following commit prefixes are supported:

  • feat:, a new feature
  • fix:, a bugfix
  • docs:, a documentation update
  • test, a test update
  • chore:, project housekeeping
  • perf:, project performance
  • refactor:, refactor of the code without change in functionality

Below are examples of well-formatted commits:

feat(compiler): implement parsing for new type of files
fix: fix nasty unhandled error
docs: fix link to website page
test(lint): add more cases to handle invalid rules

Creating pull requests

When creating a new pull request, it's preferable to use a conventional commit-formatted title, as this title will be used as the default commit message on the squashed commit after merging.

Here are some other scripts that you might find useful.

If you are a core contributor

If you are a core contributor, and you have access to create new branches from the main repository (not a fork), use these comments to run specific workflows:

  • !bench_parser benchmarks the parser's runtime performance and writes a comment with the results;
  • !bench_formatter benchmarks the formatter runtime performance and writes a comment with the results;

Naming patterns

  1. Forbid a concept

    no<Concept>
    

    When a rule's sole intention is to forbid a single concept - such as disallowing the use of debugger statements - the rule should be named using the no prefix. For example, the rule to disallow the use of debugger statements is named noDebugger.

  2. Mandate a concept

    use<Concept>
    

    When a rule's sole intention is to mandate a single concept - such as forcing the use of camel-casing - the rule should be named using the use prefix. For example, the rule to mandating the use of camel-cased variable names is named useCamelCase.

Parser

  • To have a better understanding of our parsing infrastructure, please read the in-depth section
  • [write tests for the parser][/crates/rome_js_parser/docs/write_tests.md]

Formatter

Versioning

We follow the specs suggested by the official documentation:

Odd minor versions are dedicated to pre-releases, e.g. *.5.* . Even minor versions are dedicated to official releases, e.g. *.6.*.

Playground