#typescript #tslint
#typescript #tslint
Вопрос:
Кто-нибудь знает, как сделать так, чтобы TSLint не удался в таком случае?
↓
return{
id: this.user.id,
isAdmin: this.user.isAdmin,
email: this.profileForm.value.email,
password: this.profileForm.value.password,
firstName: this.profileForm.value.firstName,
secondName: this.profileForm.value.secondName,
mobilePhone: this.profileForm.value.mobilePhone,
};
У меня есть такой tslint.json
"one-line": [true, "check-open-brace", "check-catch", "check-else", "check-whitespace"],
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type"]
Большое спасибо!
Комментарии:
1. Чтобы проверить, правильно ли я понимаю, вы хотите сделать так, чтобы вам приходилось присваивать объект переменной, а затем возвращать переменную?
2. Извините за неясный вопрос) Нет, я хочу принудительно добавить пробел между возвратом и фигурной скобкой.