私はReact Projectをlintingするためにairbnb
拡張子を使用しています。さて、私のindex.js
に私が持っている:文書のlinterエラーno-undefを解決する
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.render(
<App />,
document.getElementById('root'),
);
リンターは言う:
no-undef 'document' is not defined.at line 8 col 3
どのように私はこの問題を解決することができますか?
非常CLE ar命令。ありがとう。 – Viraths