Skip to content
Yuki Ueda edited this page May 4, 2020 · 8 revisions

Contributing to vscode-r

  1. install npm and Node.js
  2. install Visual Studio Code
git clone https://github.com/Ikuyadeu/vscode-R.git
cd vscode-R
npm install
code .

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.

Test

  • Press F5 if you open this project by VS Code

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)

Clone this wiki locally