EsLint: Hide undefined functions Warnings

Viewed 21

How can i hide all un-used Functions warnings in Javascript (using EsLint)? If i use following command, it will only hide warnings of the defined functions.

/* global lg, storeKeys, mergeDeep, count, preg_match */

Is there a way to hide all functions warnings without hiding the un-defined Variables? Like:

/* eslint-disable no-undef-functions */

0 Answers
Related