Files
vscode-extension-samples/source-control-sample/tslint.json

15 lines
247 B
JSON
Raw Normal View History

2019-03-12 23:24:46 +00:00
{
"rules": {
"no-string-throw": true,
"no-unused-expression": true,
"no-duplicate-variable": true,
"curly": true,
"class-name": true,
2019-03-20 10:31:44 +01:00
"semicolon": [
true,
"always"
],
"triple-equals": true
},
"defaultSeverity": "warning"
2019-03-12 23:24:46 +00:00
}