File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ module.exports = {
7
7
} ,
8
8
parser : 'babel-eslint' ,
9
9
extends : [
10
+ 'eslint:recommended' ,
10
11
'standard'
11
12
] ,
12
13
parserOptions : {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ module.exports = async function warmServer () {
8
8
}
9
9
10
10
// Promise.all is used to load multiple things in parallel
11
- ; [ pages , site , earlyAccessPaths ] = await Promise . all ( [
11
+ [ pages , site , earlyAccessPaths ] = await Promise . all ( [
12
12
require ( './pages' ) ( ) ,
13
13
require ( './site-data' ) ( ) ,
14
14
fetchEarlyAccessPaths ( )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ describe('sidebar', () => {
6
6
7
7
let $homePage , $githubPage , $enterprisePage
8
8
beforeAll ( async ( done ) => {
9
- ; [ $homePage , $githubPage , $enterprisePage ] = await Promise . all ( [
9
+ [ $homePage , $githubPage , $enterprisePage ] = await Promise . all ( [
10
10
getDOM ( '/en' ) ,
11
11
getDOM ( '/en/github' ) ,
12
12
getDOM ( '/en/enterprise/admin' )
You can’t perform that action at this time.
0 commit comments