jessicaantiope / ecmascript

Exercism exercises in ECMAScript.

Home Page:http://exercism.io/languages/ecmascript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ECMAScript

Build Status Join the chat at https://gitter.im/exercism/xecmascript

Exercism exercises in ECMAScript 6

Running the Unit Test Suite

Node.js must be installed. Follow these instructions for installing nodejs. We recommend using the latest LTS version.

Use npm to install all required dependencies:

npm install

Linting Your Code

This project uses eslint to help you write quality ECMAScript code by checking for common formatting errors, enforcing style rules, and suggesting changes that conform to best practices.

npm run lint-test

Test All Assignments

The make script will test all exercises:

make test

Note: make test is recommended BEFORE submitting a PR. It will test your submission, and help guard against unintentional, unrelated changes.

Test Specific Assignment

Pass the exercise name to make script to run the tests for a specific exercise:

make test-assignment ASSIGNMENT=hello-world

Contributing Guide

For an in-depth discussion of how exercism language tracks and exercises work, please see CONTRIBUTING.md

About

Exercism exercises in ECMAScript.

http://exercism.io/languages/ecmascript

License:MIT License


Languages

Language:JavaScript 99.2%Language:Makefile 0.5%Language:Shell 0.3%