eslint与airbnb做出反应

时间:2016-06-13 15:40:56

标签: reactjs eslint airbnb

使用airbnb精心准备

import React from 'react';
import TopBar from './topBar';
import Content from './content';

class App extends React.Component {
  render() {
    return (
      <div className="app">
        <TopBar />
        <Content />
      </div>
    );
  }
}

export default App;

给出错误

5:1  error  Component should be written as a pure function  react/prefer-stateless-function

我试过了

function render(){}

render: function() {}

但没有成功

请帮帮我

1 个答案:

答案 0 :(得分:1)

使用https://facebook.github.io/react/docs/reusable-components.html#stateless-functions中的文档,您的代码示例将转换为:

import React from 'react';
import TopBar from './topBar';
import Content from './content';

function App (props) {
  return (
    <div className="app">
      <TopBar />
      <Content />
    </div>
  );
}

export default App;

请注意,此更新的代码示例将打破其他一些airbnb eslinting规则,但这些规则应该是不言自明的。只需将此作为模板发布即可。关于这个主题的文档是非常直接的,所以请确保你给予好评。