1.0.0 • Published 7 years ago

tslint-config-ikala v1.0.0

Weekly downloads
8
License
-
Repository
-
Last release
7 years ago

Tslint Config Ikala

The typescript coding style rules for ikala that extends tslint:recommended ('4.4.2': '2017-01-26T14:40:18.117Z')

Usage

  1. Get into your own project which you want to lint.

  2. Add tslint to project. (for instance: yarn add tslint --dev)

  3. create your own tslint.json in your own project which you want to lint.

    {
      "extends": [
        "./node_modules/tslint-config-ikala/tslint.json"
      ],
      "rules": {
      }
    }
  4. lint it (for instance: add yarn script "lint": "tslint ./src/**/*.ts -t codeFrame" then run yarn run lint)