vscode/tslint.json

20 lines
377 B
JSON
Raw Normal View History

2016-01-14 16:53:55 +00:00
{
"rules": {
2016-01-15 13:45:30 +00:00
"no-unused-expression": true,
"no-duplicate-variable": true,
2016-02-04 15:01:05 +00:00
"no-duplicate-key": true,
"no-unused-variable": true,
"curly": true,
"class-name": true,
2016-09-05 13:17:01 +00:00
"semicolon": ["always"],
"triple-equals": true,
"no-unexternalized-strings": [
true,
{
"signatures": ["localize", "nls.localize"],
"keyIndex": 0,
"messageIndex": 1
}
]
2016-01-14 16:53:55 +00:00
}
}