Is it possible to turn off the eslint rule for the whole file? Something such as:
// eslint-disable-file no-use-before-define
(Analogous t
You can turn off specific rule for a file by using /*eslint []*/
/*eslint []*/
/* eslint no-console: "off", no-mixed-operators: "off" */
Version: eslint@4.3.0
eslint@4.3.0