angular2,文件应该以换行符结尾,并且尾随 space

angular2, file should end with a newline, and trailing space

我是 angular2 和 typescript 的新手,我遇到了这 3 个错误,我不明白如何修复尾随空格,文件应该以换行符结尾。

错误来自您的代码 linter。

代码 linter 查找代码格式不一致并在您违反某些规则(您可以手动指定)时抛出异常。

这意味着您的代码存在格式错误。你的 linter 基本上是告诉你在文件末尾添加一个空行 events/event-list.component.ts。此外,该文件中某处有一个尾随空格。有文本编辑器工具可以内置或使用插件执行此操作,我建议在您的编辑器上寻找该功能。如果没有,您可以寻找在线工具去除代码中的尾随空格。

错误来自 tslint,它为您的项目定义了一些规则,并检查您的代码是否符合这些规则。您需要修复错误或 ignore/disable 这些规则。

file should end with a newline

You can ignore this rule on tslint.json by adding this on the rules object property

 "eofline": false

-

trailing whitespace

You can ignore this rule on tslint.json by adding this on the rules object property

 "no-trailing-whitespace": false

有关规则的更多信息:https://palantir.github.io/tslint/rules/

您可以通过在换行符的情况下按 enter 或通过转到该位置并返回 space.

删除尾随 space 来提供它所要求的内容

在导出结束时 class,在“}”处,只需按回车键。这应该将光标移到一个新行。这消除了错误。