JSPM

  • Created
  • Published
  • Downloads 7700
  • Score
    100M100P100Q137939F
  • License Apache-2.0

Zero-configuration TypeScript Standard Validation

Package Exports

  • typescript-standard

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (typescript-standard) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Zero-configuration TypeScript Standard Validation

Installation

npm install typescript-standard --save-dev

Usage

package.json

{
  "scripts": {
    "test": "node_modules/.bin/standard"
  }
}

CLI at project root folder

./node_modules/.bin/standard

or in your code

var results = require('typescript-standard')
console.log(results);

Tips

Here is a easier way to run local node_modules by adding the .bin folder into your $PATH variable

export PATH=$PATH:node_modules/.bin

Updates

0.2.0

  • Add support for Typescript 2.0 - include field
  • Removed semicolon check because the program is not smart enough to handle all semicolon scenarios with uglifyjs

0.1.1

  • Imported official typescript standard rules from Microsoft repository.
  • The file and exclude from tsconfig.json is supported.