refactor: add prefer-const to .eslintrc + fix errors (#14880)

This commit is contained in:
Milan Burda 2018-10-02 03:56:31 +02:00 committed by Samuel Attard
parent 07161a8452
commit 3ad3ade828
47 changed files with 239 additions and 238 deletions

View file

@ -228,7 +228,7 @@ describe('remote module', () => {
})
it('is referenced by its members', () => {
let stringify = remote.getGlobal('JSON').stringify
const stringify = remote.getGlobal('JSON').stringify
global.gc()
stringify({})
})
@ -451,13 +451,13 @@ describe('remote module', () => {
assert.strictEqual(derived.method(), 'method')
assert.strictEqual(derived.readonly, 'readonly')
assert(!derived.hasOwnProperty('method'))
let proto = Object.getPrototypeOf(derived)
const proto = Object.getPrototypeOf(derived)
assert(!proto.hasOwnProperty('method'))
assert(Object.getPrototypeOf(proto).hasOwnProperty('method'))
})
it('is referenced by methods in prototype chain', () => {
let method = derived.method
const method = derived.method
derived = null
global.gc()
assert.strictEqual(method(), 'method')
@ -474,7 +474,7 @@ describe('remote module', () => {
})
it('throws custom errors from the main process', () => {
let err = new Error('error')
const err = new Error('error')
err.cause = new Error('cause')
err.prop = 'error prop'
try {