Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Expensify/App into aldo_remove-reco…
Browse files Browse the repository at this point in the history
…nnect-report
  • Loading branch information
aldo-expensify committed Apr 2, 2024
2 parents 278c3f1 + 0f089ae commit 325111d
Show file tree
Hide file tree
Showing 300 changed files with 6,043 additions and 8,458 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
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 325111d

Please sign in to comment.