mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
37 lines
741 B
JSON
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"
|
|
} |