Prevent React to be incorrectly marked as unused.
The following patterns are considered warnings:
var React = require('react')
// nothing to do with React
The following patterns are not considered warnings:
var React = require('react')
var Hello = pug`h1 Hello`
If you are not using pug, if React is declared as global variable or if you do not use the no-unused-vars rule then you can disable this rule.