blob: 92e315a2499407d461f4d54d33aaf90bd1198785 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
mark-exported-symbols-as-used
=============================
Marks variables listed in ``EXPORTED_SYMBOLS`` as used so that ``no-unused-vars``
does not complain about them.
This rule also checks that ``EXPORTED_SYMBOLS`` is not defined using ``let`` as
``let`` isn't allowed as the lexical scope may die after the script executes.
Examples of incorrect code for this rule:
-----------------------------------------
.. code-block:: js
let EXPORTED_SYMBOLS = ["foo"];
Examples of correct code for this rule:
---------------------------------------
.. code-block:: js
var EXPORTED_SYMBOLS = ["foo"];
const EXPORTED_SYMBOLS = ["foo"];
|