在Atom编辑器中,我安装了以下插件
> linter
> linter-eslint
看来他们不认识JSX语法。
我有它在命令行工作,但必须使用其他插件像esprima-fb和eslint-plugin-react。看起来没有这样的插件为Atom编辑器,并想知道是否有人知道一种方法来解决这个问题。
要使Eslint与React.js很好地工作:
原文链接:https://www.f2er.com/react/302804.html>安装linter& linter- eslint插件
>运行npm install eslint-plugin-react
>在你的.eslintrc配置文件中添加“plugins”:[“react”]
>将“ecmaFeatures”添加到您的.eslintrc配置文件中:{“jsx”:true}
这里是一个.eslintrc配置文件的例子:
{ "env": { "browser": true,"node": true },"globals": { "React": true },"ecmaFeatures": { "jsx": true },"plugins": [ "react" ] }
我现在使用Eslint v1.1.0。
边注:我不得不安装eslint和eslint-plugin-react作为项目依赖(例如,npm install eslint eslint-plugin-react –save-dev)。希望这有助于。