Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/tienifr/App into fix/38378
Browse files Browse the repository at this point in the history
  • Loading branch information
tienifr committed Apr 1, 2024
2 parents 7248021 + b282693 commit eedf0fb
Show file tree
Hide file tree
Showing 165 changed files with 2,288 additions and 1,168 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 eedf0fb

Please sign in to comment.