vscode/tslint.json

52 lines
739 B
JSON
Raw Normal View History

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