chore(deps): Update dependency eslint to version 6.8.0 🌟 (#6509)

* chore(deps): Update eslint to 6.8.0 🌟

* fix missing dangling commas for linter

* fix missing dangling commas for linter

* more lint fixes

* yarn lock

Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com>
Co-authored-by: Jennifer Shehane <shehane.jennifer@gmail.com>
This commit is contained in:
renovate[bot]
2020-02-25 00:09:47 +06:30
committed by GitHub
parent 844a1bd12c
commit eab801ae3f
95 changed files with 440 additions and 387 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ describe('bump', () => {
la(
R.equals(filtered, projects),
'should have kept all projects',
filtered
filtered,
)
})
@@ -34,7 +34,7 @@ describe('bump', () => {
la(
projects.length,
'there should be at least a few projects in the list of projects',
projects
projects,
)
const filter = bump.getFilterByProvider('circle', 'darwin')
+1 -1
View File
@@ -140,7 +140,7 @@ describe('move-binaries', () => {
.withArgs(
`${latestMacBuild}cypress.zip`,
'desktop/3.3.0/darwin-x64/cypress.zip',
aws.bucket
aws.bucket,
)
.resolves()
+1 -1
View File
@@ -47,7 +47,7 @@ describe('upload', () => {
la(
folder === 'desktop/3.3.0/darwin-x64/',
'wrong upload desktop folder',
folder
folder,
)
})
})
+1 -1
View File
@@ -67,7 +67,7 @@ describe('packages', () => {
}),
},
},
}
},
)
const res = await packages.getPackagesWithScript('build')
+2 -2
View File
@@ -23,7 +23,7 @@ describe('konfig check', () => {
!cwd.includes(join('packages', 'server')),
'process CWD is set to',
cwd,
'for some reason'
'for some reason',
)
// if the above assertion breaks, it means some script in binary scripts
// loads "lib/konfig" directly, which unexpectedly changes the CWD.
@@ -38,7 +38,7 @@ describe('konfig check', () => {
'previous cwd',
cwd,
'differs after loading konfig',
cwdAfter
cwdAfter,
)
la(is.fn(konfig), 'expected konfig to be a function', konfig)