Files
vscode-extension-samples/multi-diagnostics-sample/tslint.json

13 lines
238 B
JSON
Raw Permalink Normal View History

2018-03-21 15:49:24 +05:30
{
"rules": {
"no-string-throw": true,
"no-unused-expression": true,
"no-duplicate-variable": true,
"curly": true,
"class-name": true,
"semicolon": [true, "always"],
2018-03-21 15:49:24 +05:30
"triple-equals": true
},
"defaultSeverity": "warning"
}