-
Notifications
You must be signed in to change notification settings - Fork 14
New and Noteworthy 1.3.0
angelozerr edited this page Apr 19, 2017
·
9 revisions
Here's a list of the most noteworthy things in the typescript.java 1.3.0
release which is available for download since ?. You can see issues for 1.3.0
Since tslint 5.0.0
, severity can be customized per rule. Severities are now supported inside the TypeScript Editor by using the tslint-language-service.
Here a demo with tslint and severities:
Here a tslint.json example which configure "quotemark" rule with "warning" severity:
{
"rules": {
"quotemark": {
"severity": "warning",
"options": [
"single"
]
}
}
}
Before
After
- TypeScript IDE
- New and Noteworthy