I am using visual studio code
When i search for settings.json file it looks like this
{
"liveServer.settings.donotVerifyTags": true,
"liveServer.settings.donotShowInfoMsg": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"editor.codeActionsOnSave": {},
"diffEditor.ignoreTrimWhitespace": false,
"settingsSync.ignoredSettings": [
]
}
how can i configure my vs code so every time when i format my document It will use my tsline rules
for prettier i already found answer for that
reference here https://stackoverflow.com/questions/49640469/how-do-you-determine-which-formatter-is-being-used-for-vs-code
but what should be the value for tsline on editor.defaultFormatter
so it will use tslint ?
