1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/test/unit
Mark Stacey 95f198550e
Declare variables before use (#6806)
While working on #6805, I noticed that many variables were being used
before they were declared. Technically this worked fine in practice
because we were using the `transform-es2015-block-scoping` Babel plugin,
which transforms `let` and `const` to `var`, which is hoisted. However,
after removing that Babel transformation, many things broke.

All instances of variables or classes being used before declared have
been fixed.

The `no-use-before-define` eslint rule has been added to catch these
cases going forward. The rule is disabled for function declarations for
the moment, because those are always hoisted. We could disable that too
if we want to, but it's purely stylistic and would require a lot more
changes.
2019-07-05 14:01:34 -03:00
..
actions Check for unused function arguments (#6583) 2019-05-08 15:51:33 -04:00
app Declare variables before use (#6806) 2019-07-05 14:01:34 -03:00
development Version 5.0.3 (#5785) 2018-11-20 08:34:14 -10:00
migrations Check for unused function arguments (#6583) 2019-05-08 15:51:33 -04:00
reducers Folder restructure (#6304) 2019-03-21 20:33:30 -02:30
responsive/components Folder restructure (#6304) 2019-03-21 20:33:30 -02:30
ui Declare variables before use (#6806) 2019-07-05 14:01:34 -03:00
balance-formatter-test.js Folder restructure (#6304) 2019-03-21 20:33:30 -02:30
localhostState.js fix merge conflicts 2018-08-17 12:56:07 -04:00
test-utils.js test - unit - add assertRejects to test asyncFns 2018-06-13 21:01:00 -07:00
util_test.js Folder restructure (#6304) 2019-03-21 20:33:30 -02:30