Contributing - REditorSupport/vscode-R GitHub Wiki
Install
- Install yarn and Node.js
- Install Visual Studio Code
git clone https://github.com/REditorSupport/vscode-R.git
cd vscode-R
npm install # install required packages for vscode-R
code . # run VS Code
Test
- In VS Code: 'File' -> 'Open Folder...' and select 'vscode-R' (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-R
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)