Skip to content

Commit b50d838

Browse files
committed
Merge branch 'main' into pac-guerreiro/fix/migrate-25309-25310-25311-25312-25313-to-typescript
2 parents 8fc529a + 879378f commit b50d838

File tree

317 files changed

+6044
-8677
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

317 files changed

+6044
-8677
lines changed

.eslintrc.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,14 @@ module.exports = {
250250
message: "Please don't declare enums, use union types instead.",
251251
},
252252
],
253+
'no-restricted-properties': [
254+
'error',
255+
{
256+
object: 'Image',
257+
property: 'getSize',
258+
message: 'Usage of Image.getImage is restricted. Please use the `react-native-image-size`.',
259+
},
260+
],
253261
'no-restricted-imports': [
254262
'error',
255263
{

.github/CODEOWNERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
# Every PR gets a review from an internal Expensify engineer
22
* @Expensify/pullerbear
3+
4+
# Assign the Design team to review changes to our styles & assets
5+
src/styles/ @Expensify/design @Expensify/pullerbear
6+
assets/ @Expensify/design @Expensify/pullerbear

.github/actions/javascript/authorChecklist/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16918,6 +16918,7 @@ const POLL_RATE = 10000;
1691816918
exports.POLL_RATE = POLL_RATE;
1691916919
class GithubUtils {
1692016920
static internalOctokit;
16921+
static POLL_RATE;
1692116922
/**
1692216923
* Initialize internal octokit
1692316924
*

.github/actions/javascript/awaitStagingDeploys/awaitStagingDeploys.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
const _ = require('underscore');
2+
const lodashThrottle = require('lodash/throttle');
23
const CONST = require('../../../libs/CONST');
34
const ActionUtils = require('../../../libs/ActionUtils');
45
const GitHubUtils = require('../../../libs/GithubUtils');
@@ -56,7 +57,7 @@ function run() {
5657

5758
return promiseDoWhile(
5859
() => !_.isEmpty(currentStagingDeploys),
59-
_.throttle(
60+
lodashThrottle(
6061
throttleFunc,
6162

6263
// Poll every 60 seconds instead of every 10 seconds

0 commit comments

Comments
 (0)