Skip to content

Bump dev deps 2019 03 29 #3697

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"space-in-parens": [2, "never"],
"space-before-function-paren": [2, "never"],
"space-before-blocks": [2],
"padded-blocks": [2, "never"],
"spaced-comment": [2, "always"],
"no-tabs": [2],
"no-multi-spaces": [2, {"ignoreEOLComments": true}],
Expand Down
1 change: 0 additions & 1 deletion devtools/test_dashboard/devtools.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ function debounce(func, wait, immediate) {
}

function searchMocks(e) {

// Clear results.
while(mocksList.firstChild) {
mocksList.removeChild(mocksList.firstChild);
Expand Down
1 change: 0 additions & 1 deletion devtools/test_dashboard/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ function readFiles(files) {
}

function createMocksList(files) {

// eliminate pollutants (e.g .DS_Store) that can accumulate in the mock directory
var jsonFiles = files.filter(function(file) {
return file.name.substr(-5) === '.json';
Expand Down
Loading