Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.23 KB

CONTRIBUTING.md

File metadata and controls

54 lines (36 loc) · 1.23 KB

Contributing

Install

  1. Install npm and Node.js
  2. Install Visual Studio Code
git clone --recursive https://github.com/devreplay/vscode-devreplay.git
cd vscode-devreplay
npm install # install required packages for vscode-devreplay
code . # run VS Code

Test

  • In VS Code: 'File' -> 'Open Folder...' and select 'vscode-devreplay' (the directory with your edits)
  • Press F5
  • A new VS Code window should open, with '[Extension Development Host]' in the title bar. This is running your modified version of vscode-devreplay

Lint

We use eslint for linting our sources. You can run eslint across the sources by calling yarn eslint from a terminal or command prompt.

To lint the source as you make changes, you can install the eslint extension.

Pull Request

  • Fork it (via GitHub) in your account
  • Add your project URL
git remote add mine https://github.com/yourname/vscode-R.git
  • Create your feature branch
git checkout -b my-new-feature
  • Commit your changes
git commit -am 'Add some feature'
  • Push to the branch
git push mine my-new-feature
  • Create new Pull Request (via GitHub)