Files
azuredatastudio/tslint.json
2019-02-21 17:56:04 -08:00

37 lines
741 B
JSON

{
"rulesDirectory": [
"build/lib/tslint"
],
"rules": {
// {{SQL CARBON EDIT}}
//"no-string-throw": true,
//"no-unused-expression": ,
//"no-duplicate-variable": true,
// "no-unused-variable": true, // requires type information in tslint > v4
"curly": true,
"class-name": true,
"semicolon": [
true,
"always"
],
"triple-equals": true,
"no-unexternalized-strings": [
true,
{
"signatures": [
"localize",
"nls.localize"
],
"keyIndex": 0,
"messageIndex": 1
}
],
// {{SQL CARBON EDIT}}
// remove import patterns and layering
"duplicate-imports": true,
"no-new-buffer": true,
"translation-remind": true,
"no-standalone-editor": true
},
"defaultSeverity": "warning"
}