EmulatorJS/CONTRIBUTING.md
Allan Niles 3794c089fa
Update docs & formating (#991)
* update docs & formating

* fix formatting

* spaces

* remove spaces

* CDN info

* functions
2025-05-07 15:50:24 -06:00

1.3 KiB

Contribute

There are several ways to contribute, be it directly to helping develop features for EmulatorJS, update the documentation, media assets or heading over to libretro and helping them develop the emulator cores that make the magic happen.

  • EmulatorJS, take a look through the issues on github and try to help out.

  • Documentation github page.

Just wanna donate? That'd help too!

Donate to: EmulatorJS

Donate to: libretro

Attention Visual Studio Code Users

By default Visual Studio Code will apply formatting that is not consistent with the standard formatting used by this project.

Please disable the formatter before submitting a Pull Request.

The formatter can be disabled for this repo only (without affecting your own preferences) by creating a new file called .vscode/settings.json (if it doesn't already exist).

Add the following options to the settings.json file to disable the formatter while working on this repo:

{
    "diffEditor.ignoreTrimWhitespace": false,
    "editor.formatOnPaste": false,
    "editor.formatOnSave": false,
    "editor.formatOnSaveMode": "modifications"
}