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 Validator
Installation
npm install typescript-standard --save-devUsage
package.json
{
"scripts": {
"test": "node_modules/.bin/standard"
}
}
CLI at project root folder
./node_modules/.bin/standard
./node_modules/.bin/standard --prettyor in your code
var engine = require('typescript-standard')
console.log(engine.lint());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/.binRoadmap
- TypeScript Code Standard Validation (TSLint)
- 0.3.x TypeScript Code Pretty Printer (tsc)
- 0.4.x TypeScript Code Import Formatter (ts-format-imports)
- 0.5.x TypeScript Code Standard Autofix (TSLint? maybe)
Updates
0.3.2
- Format ts files when you run
standard --pretty
0.2.12
- Bug fixing
0.2.6
- 100% typescript!!!
0.2.5
- Bug fixing
0.2.1
- Add
--prettyand--verboseoutput style from cli - Rewrite this project in typescript
0.2.0
- Add support for Typescript 2 'include' field
- Removed
semicoloncheck 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
fileandexcludefromtsconfig.jsonis supported.