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 = {
77 } ,
88 parser : 'babel-eslint' ,
99 extends : [
10+ 'eslint:recommended' ,
1011 'standard'
1112 ] ,
1213 parserOptions : {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ module.exports = async function warmServer () {
88 }
99
1010 // Promise.all is used to load multiple things in parallel
11- ; [ pages , site , earlyAccessPaths ] = await Promise . all ( [
11+ [ pages , site , earlyAccessPaths ] = await Promise . all ( [
1212 require ( './pages' ) ( ) ,
1313 require ( './site-data' ) ( ) ,
1414 fetchEarlyAccessPaths ( )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ describe('sidebar', () => {
66
77 let $homePage , $githubPage , $enterprisePage
88 beforeAll ( async ( done ) => {
9- ; [ $homePage , $githubPage , $enterprisePage ] = await Promise . all ( [
9+ [ $homePage , $githubPage , $enterprisePage ] = await Promise . all ( [
1010 getDOM ( '/en' ) ,
1111 getDOM ( '/en/github' ) ,
1212 getDOM ( '/en/enterprise/admin' )
You can’t perform that action at this time.
0 commit comments