Skip to content

New and Noteworthy 1.3.0

angelozerr edited this page Apr 19, 2017 · 9 revisions

New and Noteworthy 1.3.0

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

Severity

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:

tslint Severity Demo

Here a tslint.json example which configure "quotemark" rule with "warning" severity:

{
	"rules": {
		"quotemark": {
			"severity": "warning",
			"options": [
				"single"
			]
		}
	}
}

Compare

Before

After