1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 01:39:44 +01:00
metamask-extension/ui
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
..
app Declare variables before use (#6806) 2019-07-05 14:01:34 -03:00
design Move responsive ui into its own folder for easier merges 2017-07-20 12:38:38 -07:00
lib Fixes bugs in 6.5.1 (#6613) 2019-05-15 10:53:09 +02:00
css.js Refactor first time flow, remove seed phrase from state (#5994) 2019-01-23 11:55:34 -03:30
example.js Check for unused function arguments (#6583) 2019-05-08 15:51:33 -04:00
index.html Move responsive ui into its own folder for easier merges 2017-07-20 12:38:38 -07:00
index.js Folder restructure (#6304) 2019-03-21 20:33:30 -02:30