J'utilise airbnb
pour linting mon projet React. Maintenant, dans mon index.js
Je l'ai fait :
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.render(
<App />,
document.getElementById('root'),
);
linter dit :
no-undef 'document' is not defined.at line 8 col 3
Comment puis-je résoudre ce problème ?