如何禁用文件中的ESLint react / prop-types规则?

我使用ReactESLinteslint-plugin-react

我想disableprop-types一个文件中的规则。

var React = require('react'); 

var Model = require('./ComponentModel');

var Component = React.createClass({

/* eslint-disable react/prop-types */

propTypes: Model.propTypes,

/* eslint-enable react/prop-types */

render: function () {

return (

<div className="component">

{this.props.title}

</div>

);

}

});

回答:

只需将其放在文件顶部即可:

/* eslint react/prop-types: 0 */

以上是 如何禁用文件中的ESLint react / prop-types规则? 的全部内容, 来源链接: utcz.com/qa/427485.html

回到顶部