Revert "Removing more templated settings #125422"

This reverts commit 40b2219e39.
This commit is contained in:
Logan Ramos
2021-07-08 16:37:09 -04:00
parent 40b2219e39
commit 4fe851b9a7
9 changed files with 19 additions and 24 deletions

View File

@@ -46,7 +46,7 @@ class UserDataSyncUtilService implements IUserDataSyncUtilService {
}
return {
eol: this.textResourcePropertiesService.getEOL(resource),
insertSpaces: this.textResourceConfigurationService.getValue(resource, 'editor.insertSpaces'),
insertSpaces: this.textResourceConfigurationService.getValue<boolean>(resource, 'editor.insertSpaces'),
tabSize: this.textResourceConfigurationService.getValue(resource, 'editor.tabSize')
};
}