added internal and external imports separation within integration tests#2019
added internal and external imports separation within integration tests#2019lucadonnoh wants to merge 1 commit intoethereum-optimism:developfrom lucadonnoh:internal-external-imports-separation
Conversation
|
Codecov Report
@@ Coverage Diff @@
## develop #2019 +/- ##
========================================
Coverage 74.58% 74.58%
========================================
Files 79 79
Lines 2554 2554
Branches 401 401
========================================
Hits 1905 1905
Misses 649 649
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report at Codecov.
|
|
Unfortunately I'm having issues seeing the integration test error on my current wifi. Going to take another look at this later tonight. |
|
I would also recommend that we enforce this order in eslint (top level - .eslintrc.js): current: 'import/order': 'off'New: 'import/order': [
1,
{
groups: [
'external',
'builtin',
'internal',
'sibling',
'parent',
'index',
],
'newlines-between': 'always',
},
],The |
Whoa! I didn't know this was a thing we could do. I'll make an issue for this :-) |
|
@lucadonnoh looks like this just needs a quick rebase to fix the merge conflicts. Great work as usual! |
|
sorry for the mess, i'm just learning how to contribute to a repo! 😅 |
|
Haha, no worries @lucadonnoh. Just let me know if you need any help! |
|
This unfortunately now has merge conflicts and needs to be fixed |
|
This is already complete - closing for now. |
Description
Separated internal and external imports in integration tests
Additional context
Some comments where missing, others were wrong (Internal and External switched)
Metadata