在文件结尾处需要换行符,但在使用React Native时找不到换行符

时间:2017-04-11 15:36:05

标签: react-native

我可以将其编译成功,但它会在6

下显示错误消息Newline required at end of file but not found

为什么?这是因为我没有使用课程或什么?

我很困惑,有人可以告诉我原因,提前谢谢。 enter image description here

1 个答案:

答案 0 :(得分:3)

那是因为Eslint。 要么这样做(把新行放在AppRegistry的行之后),要么把它放在文件的顶部

/* eslint-disable eol-last */

这将迫使eslint停止警告你。但仅仅是为了'eol-last'规则。