Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 72e3d68

Browse files
style: fix eslint issue
1 parent ebb7be8 commit 72e3d68

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

‎.vscode/settings.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
{
22
"workbench.colorCustomizations": {
3+
"activityBar.background": "#fbed80",
4+
"activityBar.foreground": "#15202b",
5+
"activityBar.inactiveForeground": "#15202b99",
6+
"activityBarBadge.background": "#06b9a5",
7+
"activityBarBadge.foreground": "#15202b",
38
"titleBar.activeBackground": "#f9e64f",
49
"titleBar.inactiveBackground": "#f9e64f99",
510
"titleBar.activeForeground": "#15202b",
6-
"titleBar.inactiveForeground": "#15202b99"
7-
}
11+
"titleBar.inactiveForeground": "#15202b99",
12+
"statusBar.background": "#f9e64f",
13+
"statusBarItem.hoverBackground": "#f7df1e",
14+
"statusBar.foreground": "#15202b"
15+
},
16+
"peacock.color": "#f9e64f"
817
}

‎src/data-structures/trees/avl-tree.spec.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,12 +155,14 @@ describe('AvlTree', () => {
155155
});
156156

157157
it('should have all nodes', () => {
158-
expect(tree.toArray()).toEqual([16, 4, 32, 2, 8, null, null, null, null, null, null]);
158+
expect(tree.toArray()).toEqual([16, 4, 32, 2, 8,
159+
null, null, null, null, null, null]);
159160
});
160161

161162
it('should rebalance and keep all nodes', () => {
162163
tree.add(1);
163-
expect(tree.toArray()).toEqual([4, 2, 16, 1, null, 8, 32, null, null, null, null, null, null]);
164+
expect(tree.toArray()).toEqual([4, 2, 16, 1, null, 8, 32,
165+
null, null, null, null, null, null]);
164166
});
165167
});
166168
});

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /