diff --git a/flow-typed/hex2rgba.js b/flow-typed/hex2rgba.js index 75c0eb96..3d67cf8d 100644 --- a/flow-typed/hex2rgba.js +++ b/flow-typed/hex2rgba.js @@ -1,3 +1,3 @@ declare module 'hex2rgba' { - declare module.exports: (hex : string, alpha? : number) => string; + declare module.exports: (hex: string, alpha?: number) => string; } diff --git a/plugins/gatsby-source-react-error-codes/gatsby-node.js b/plugins/gatsby-source-react-error-codes/gatsby-node.js index 18dd5be7..24d14696 100644 --- a/plugins/gatsby-source-react-error-codes/gatsby-node.js +++ b/plugins/gatsby-source-react-error-codes/gatsby-node.js @@ -1,9 +1,10 @@ const request = require('request-promise'); -const errorCodesUrl = 'http://raw.githubusercontent.com/facebook/react/master/scripts/error-codes/codes.json'; +const errorCodesUrl = + 'http://raw.githubusercontent.com/facebook/react/master/scripts/error-codes/codes.json'; -exports.sourceNodes = async ({ boundActionCreators }) => { - const { createNode } = boundActionCreators; +exports.sourceNodes = async ({boundActionCreators}) => { + const {createNode} = boundActionCreators; const jsonString = await request(errorCodesUrl); @@ -16,4 +17,4 @@ exports.sourceNodes = async ({ boundActionCreators }) => { contentDigest: jsonString, }, }); -}; \ No newline at end of file +}; diff --git a/src/components/Container/Container.js b/src/components/Container/Container.js index aec40df6..8e17a2cb 100644 --- a/src/components/Container/Container.js +++ b/src/components/Container/Container.js @@ -5,7 +5,7 @@ * LICENSE file in the root directory of this source tree. * * @emails react-core -*/ + */ 'use strict';