Skip to content

Commit 19acfbd

Browse files
committed
Merge branch 'main' into fix/70732
2 parents 40157ff + 4c66265 commit 19acfbd

533 files changed

Lines changed: 22398 additions & 3503 deletions

File tree

Some content is hidden

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

.claude/agents/helpdot-inline-reviewer.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@ keywords: [feature name, related terms, navigation path, etc.]
4444
- Button label violations:
4545
- "Continue" instead of "Next"
4646
- "Save" instead of "Confirm" at end of flows
47-
- Markdown formatting violations:
48-
- Bullet phrases with periods (should have no period)
49-
- Bullet sentences without periods (should have period)
47+
- Markdown formatting violations
5048
- FAQ structure violations:
5149
- Not using "# FAQ" as heading
5250
- Questions not using ## subheadings

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ module.exports = {
154154
},
155155
rules: {
156156
// TypeScript specific rules
157+
'@lwc/lwc/no-async-await': 'off',
157158
'@typescript-eslint/prefer-enum-initializers': 'error',
158159
'@typescript-eslint/no-var-requires': 'off',
159160
'@typescript-eslint/no-non-null-assertion': 'error',

.github/.eslintrc.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ module.exports = {
22
rules: {
33
// For all these Node.js scripts, we do not want to disable `console` statements
44
'no-console': 'off',
5-
6-
'@lwc/lwc/no-async-await': 'off',
75
'no-await-in-loop': 'off',
86
'no-restricted-syntax': ['error', 'ForInStatement', 'LabeledStatement', 'WithStatement'],
97
'no-continue': 'off',

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
# PRs that touch the front end style or assets, get an additional review from the Design team
55
src/styles/ @Expensify/design @Expensify/pullerbear
66
assets/ @Expensify/design @Expensify/pullerbear
7+
8+
# Philosophy docs are in their early stages and need to be reviewed by Tim to ensure they have consistent formatting and organization
9+
contributingGuides/philosophies @tgolen

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16211,6 +16211,21 @@ class GithubUtils {
1621116211
throw error;
1621216212
}
1621316213
}
16214+
static async getPullRequestDiff(pullRequestNumber) {
16215+
if (!this.internalOctokit) {
16216+
this.initOctokit();
16217+
}
16218+
// eslint-disable-next-line @typescript-eslint/non-nullable-type-assertion-style
16219+
const response = await this.internalOctokit.request('GET /repos/{owner}/{repo}/pulls/{pull_number}', {
16220+
owner: CONST_1.default.GITHUB_OWNER,
16221+
repo: CONST_1.default.APP_REPO,
16222+
pull_number: pullRequestNumber,
16223+
mediaType: {
16224+
format: 'diff',
16225+
},
16226+
});
16227+
return response.data;
16228+
}
1621416229
}
1621516230
exports["default"] = GithubUtils;
1621616231

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13015,6 +13015,21 @@ class GithubUtils {
1301513015
throw error;
1301613016
}
1301713017
}
13018+
static async getPullRequestDiff(pullRequestNumber) {
13019+
if (!this.internalOctokit) {
13020+
this.initOctokit();
13021+
}
13022+
// eslint-disable-next-line @typescript-eslint/non-nullable-type-assertion-style
13023+
const response = await this.internalOctokit.request('GET /repos/{owner}/{repo}/pulls/{pull_number}', {
13024+
owner: CONST_1.default.GITHUB_OWNER,
13025+
repo: CONST_1.default.APP_REPO,
13026+
pull_number: pullRequestNumber,
13027+
mediaType: {
13028+
format: 'diff',
13029+
},
13030+
});
13031+
return response.data;
13032+
}
1301813033
}
1301913034
exports["default"] = GithubUtils;
1302013035

.github/actions/javascript/checkAndroidStatus/index.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -737718,6 +737718,21 @@ class GithubUtils {
737718737718
throw error;
737719737719
}
737720737720
}
737721+
static async getPullRequestDiff(pullRequestNumber) {
737722+
if (!this.internalOctokit) {
737723+
this.initOctokit();
737724+
}
737725+
// eslint-disable-next-line @typescript-eslint/non-nullable-type-assertion-style
737726+
const response = await this.internalOctokit.request('GET /repos/{owner}/{repo}/pulls/{pull_number}', {
737727+
owner: CONST_1.default.GITHUB_OWNER,
737728+
repo: CONST_1.default.APP_REPO,
737729+
pull_number: pullRequestNumber,
737730+
mediaType: {
737731+
format: 'diff',
737732+
},
737733+
});
737734+
return response.data;
737735+
}
737721737736
}
737722737737
exports["default"] = GithubUtils;
737723737738

.github/actions/javascript/checkDeployBlockers/index.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12282,6 +12282,21 @@ class GithubUtils {
1228212282
throw error;
1228312283
}
1228412284
}
12285+
static async getPullRequestDiff(pullRequestNumber) {
12286+
if (!this.internalOctokit) {
12287+
this.initOctokit();
12288+
}
12289+
// eslint-disable-next-line @typescript-eslint/non-nullable-type-assertion-style
12290+
const response = await this.internalOctokit.request('GET /repos/{owner}/{repo}/pulls/{pull_number}', {
12291+
owner: CONST_1.default.GITHUB_OWNER,
12292+
repo: CONST_1.default.APP_REPO,
12293+
pull_number: pullRequestNumber,
12294+
mediaType: {
12295+
format: 'diff',
12296+
},
12297+
});
12298+
return response.data;
12299+
}
1228512300
}
1228612301
exports["default"] = GithubUtils;
1228712302

.github/actions/javascript/checkSVGCompression/index.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20807,6 +20807,21 @@ class GithubUtils {
2080720807
throw error;
2080820808
}
2080920809
}
20810+
static async getPullRequestDiff(pullRequestNumber) {
20811+
if (!this.internalOctokit) {
20812+
this.initOctokit();
20813+
}
20814+
// eslint-disable-next-line @typescript-eslint/non-nullable-type-assertion-style
20815+
const response = await this.internalOctokit.request('GET /repos/{owner}/{repo}/pulls/{pull_number}', {
20816+
owner: CONST_1.default.GITHUB_OWNER,
20817+
repo: CONST_1.default.APP_REPO,
20818+
pull_number: pullRequestNumber,
20819+
mediaType: {
20820+
format: 'diff',
20821+
},
20822+
});
20823+
return response.data;
20824+
}
2081020825
}
2081120826
exports["default"] = GithubUtils;
2081220827

.github/actions/javascript/createOrUpdateStagingDeploy/index.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12569,6 +12569,21 @@ class GithubUtils {
1256912569
throw error;
1257012570
}
1257112571
}
12572+
static async getPullRequestDiff(pullRequestNumber) {
12573+
if (!this.internalOctokit) {
12574+
this.initOctokit();
12575+
}
12576+
// eslint-disable-next-line @typescript-eslint/non-nullable-type-assertion-style
12577+
const response = await this.internalOctokit.request('GET /repos/{owner}/{repo}/pulls/{pull_number}', {
12578+
owner: CONST_1.default.GITHUB_OWNER,
12579+
repo: CONST_1.default.APP_REPO,
12580+
pull_number: pullRequestNumber,
12581+
mediaType: {
12582+
format: 'diff',
12583+
},
12584+
});
12585+
return response.data;
12586+
}
1257212587
}
1257312588
exports["default"] = GithubUtils;
1257412589

0 commit comments

Comments
 (0)