⬆️ 👕 updated to eslint 2.1.0
Verified migration doc (nothing to be done) http://eslint.org/docs/user-guide/migrating-to-2.0.0 And made sure the eslint tasks passed
This commit is contained in:
parent
f3f6fa958e
commit
2aff0c47d0
16 changed files with 28 additions and 27 deletions
12
spec/fixtures/api/quit-app/main.js
vendored
12
spec/fixtures/api/quit-app/main.js
vendored
|
@ -1,12 +1,12 @@
|
|||
var app = require('electron').app
|
||||
var app = require('electron').app;
|
||||
|
||||
app.on('ready', function () {
|
||||
// This setImmediate call gets the spec passing on Linux
|
||||
setImmediate(function () {
|
||||
app.exit(123)
|
||||
})
|
||||
})
|
||||
app.exit(123);
|
||||
});
|
||||
});
|
||||
|
||||
process.on('exit', function (code) {
|
||||
console.log('Exit event with code: ' + code)
|
||||
})
|
||||
console.log('Exit event with code: ' + code);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue