Getting rid of linting errors

This commit is contained in:
Ramya Achutha Rao 2016-12-12 21:32:58 -08:00 committed by Kevin Sawicki
parent f1cd1c6dff
commit 2814e04e7d
2 changed files with 8 additions and 8 deletions

View file

@ -21,9 +21,9 @@ exports.load = (appUrl) => {
options.icon = path.join(__dirname, 'icon.png')
}
crashReporter.start({
submitURL: "http://localhost:8080/uploadDump/mainDump",
companyName: "Main Company",
productName: "Main Product"
submitURL: 'http://localhost:8080/uploadDump/mainDump',
companyName: 'Main Company',
productName: 'Main Product'
})
mainWindow = new BrowserWindow(options)

View file

@ -1,9 +1,9 @@
const os = require('os')
const path = require('path')
let productName = 'Child Product';
let companyName = 'Child Company';
let tmpPath = path.join(os.tmpdir(), productName + ' Crashes');
let productName = 'Child Product'
let companyName = 'Child Company'
let tmpPath = path.join(os.tmpdir(), productName + ' Crashes')
process.crashReporter.start({
productName: productName,
@ -14,5 +14,5 @@ process.crashReporter.start({
randomData1: 'The Holidays are here!',
randomData2: 'Happy New Year!'
}
});
process.crash();
})
process.crash()