Clean up no-empty lint errors
This commit is contained in:
parent
4f4456bde8
commit
ccce284a5b
3 changed files with 3 additions and 5 deletions
|
@ -1,7 +1,4 @@
|
||||||
{
|
{
|
||||||
"rules": {
|
|
||||||
"no-empty": 0
|
|
||||||
},
|
|
||||||
"env": {
|
"env": {
|
||||||
"jquery": true,
|
"jquery": true,
|
||||||
"mocha": true
|
"mocha": true
|
||||||
|
|
|
@ -470,6 +470,7 @@ describe('browser-window module', function() {
|
||||||
fs.rmdirSync(path.join(savePageDir, 'save_page_files'));
|
fs.rmdirSync(path.join(savePageDir, 'save_page_files'));
|
||||||
fs.rmdirSync(savePageDir);
|
fs.rmdirSync(savePageDir);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
// Ignore error
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ describe('protocol module', function() {
|
||||||
callback(text);
|
callback(text);
|
||||||
return callback();
|
return callback();
|
||||||
} catch (error1) {
|
} catch (error1) {
|
||||||
|
// Ignore error
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
return protocol.registerStringProtocol(protocolName, doubleHandler, function(error) {
|
return protocol.registerStringProtocol(protocolName, doubleHandler, function(error) {
|
||||||
|
@ -589,7 +589,7 @@ describe('protocol module', function() {
|
||||||
callback(text);
|
callback(text);
|
||||||
return callback();
|
return callback();
|
||||||
} catch (error1) {
|
} catch (error1) {
|
||||||
|
// Ignore error
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
return protocol.interceptStringProtocol('http', doubleHandler, function(error) {
|
return protocol.interceptStringProtocol('http', doubleHandler, function(error) {
|
||||||
|
|
Loading…
Reference in a new issue