Skip to content

Commit

Permalink
Merge branch 'main' into pac-guerreiro/fix/migrate-25309-25310-25311-…
Browse files Browse the repository at this point in the history
…25312-25313-to-typescript
  • Loading branch information
pac-guerreiro committed Apr 3, 2024
2 parents 8fc529a + 879378f commit b50d838
Show file tree
Hide file tree
Showing 317 changed files with 6,044 additions and 8,677 deletions.
8 changes: 8 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,14 @@ module.exports = {
message: "Please don't declare enums, use union types instead.",
},
],
'no-restricted-properties': [
'error',
{
object: 'Image',
property: 'getSize',
message: 'Usage of Image.getImage is restricted. Please use the `react-native-image-size`.',
},
],
'no-restricted-imports': [
'error',
{
Expand Down
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
# Every PR gets a review from an internal Expensify engineer
* @Expensify/pullerbear

# Assign the Design team to review changes to our styles & assets
src/styles/ @Expensify/design @Expensify/pullerbear
assets/ @Expensify/design @Expensify/pullerbear
1 change: 1 addition & 0 deletions .github/actions/javascript/authorChecklist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16918,6 +16918,7 @@ const POLL_RATE = 10000;
exports.POLL_RATE = POLL_RATE;
class GithubUtils {
static internalOctokit;
static POLL_RATE;
/**
* Initialize internal octokit
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const _ = require('underscore');
const lodashThrottle = require('lodash/throttle');
const CONST = require('../../../libs/CONST');
const ActionUtils = require('../../../libs/ActionUtils');
const GitHubUtils = require('../../../libs/GithubUtils');
Expand Down Expand Up @@ -56,7 +57,7 @@ function run() {

return promiseDoWhile(
() => !_.isEmpty(currentStagingDeploys),
_.throttle(
lodashThrottle(
throttleFunc,

// Poll every 60 seconds instead of every 10 seconds
Expand Down
Loading

0 comments on commit b50d838

Please sign in to comment.