Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 878 Bytes

CONTRIBUTING.md

File metadata and controls

49 lines (32 loc) · 878 Bytes

Contributing to prettier-tslint

Thanks for contributing to prettier-tslint! Here's a quick-start guide.

Pre-requisites

Setup

  • Clone this repository:

    git clone https://github.com/azz/prettier-tslint.git
    cd prettier-tslint
  • Install dependencies:

    yarn

Development

All of the source code lives in src/ and the tests are in test/.

Tests are written with jest and can be run with:

yarn test

All code is linted with eslint with prettier integration. To validate your files, run:

yarn lint

To fix any auto-fixable problems, run:

yarn lint --fix

With yarn before v1, this is yarn lint -- --fix