Skip to content

Commit 007529e

Browse files
committed
yarn lint fix
1 parent 3a18668 commit 007529e

File tree

3 files changed

+25
-25
lines changed

3 files changed

+25
-25
lines changed

metro.config.js

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,24 @@
88
* @format
99
*/
1010

11-
'use strict';
11+
'use strict';
1212

13-
const getPolyfills = require('./rn-get-polyfills');
14-
15-
/**
16-
* This cli config is needed for development purposes, e.g. for running
17-
* integration tests during local development or on CI services.
18-
*/
19-
module.exports = {
20-
resolver: {
13+
const getPolyfills = require('./rn-get-polyfills');
14+
15+
/**
16+
* This cli config is needed for development purposes, e.g. for running
17+
* integration tests during local development or on CI services.
18+
*/
19+
module.exports = {
20+
resolver: {
2121
platforms: ['ios', 'macos', 'android'],
22-
// $FlowFixMe[signature-verification-failure] Can't infer RegExp type.
23-
blockList: /buck-out/,
24-
extraNodeModules: {
25-
'react-native': __dirname,
26-
},
27-
},
28-
serializer: {
29-
getPolyfills,
30-
},
31-
};
22+
// $FlowFixMe[signature-verification-failure] Can't infer RegExp type.
23+
blockList: /buck-out/,
24+
extraNodeModules: {
25+
'react-native': __dirname,
26+
},
27+
},
28+
serializer: {
29+
getPolyfills,
30+
},
31+
};

scripts/bump-oss-version.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ if (nightlyBuild) {
5252
version = `0.0.0-${currentCommit.slice(0, 9)}`;
5353
} else {
5454
if (!ci && process.env.BUILD_SOURCEBRANCH) {
55-
console.log(`BUILD_SOURCEBRANCH: ${process.env.BUILD_SOURCEBRANCH}`)
55+
console.log(`BUILD_SOURCEBRANCH: ${process.env.BUILD_SOURCEBRANCH}`);
5656
branch = process.env.BUILD_SOURCEBRANCH.match(/refs\/heads\/(.*)/)[1];
57-
console.log(`Identified branch: ${branch}`)
57+
console.log(`Identified branch: ${branch}`);
5858
} else {
5959
branch = exec('git symbolic-ref --short HEAD', {
6060
silent: true,

scripts/run-ci-e2e-tests.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,16 +276,16 @@ try {
276276
exitCode = 1;
277277
throw Error(exitCode);
278278
}
279-
// [TODO(macOS GH#774)
280-
// Comment out failing test to unblock CI
281-
// It seems It's running the flow checks against react-native-macos 0.63 instead of what is in the repo causing a failure
279+
// [TODO(macOS GH#774)
280+
// Comment out failing test to unblock CI
281+
// It seems It's running the flow checks against react-native-macos 0.63 instead of what is in the repo causing a failure
282282
// describe('Test: Flow check');
283283
// if (exec(`${ROOT}/node_modules/.bin/flow check`).code) {
284284
// echo('Flow check failed.');
285285
// exitCode = 1;
286286
// throw Error(exitCode);
287287
// }
288-
// ]TODO(macOS GH#774)
288+
// ]TODO(macOS GH#774)
289289
}
290290
exitCode = 0;
291291
} finally {

0 commit comments

Comments
 (0)