Skip to content

Commit 300cb23

Browse files
committed
Merge branch 'main' into refactor/decompose-MoneyRequestConfirmationListFooter
2 parents 912814d + 3f5e62c commit 300cb23

593 files changed

Lines changed: 17693 additions & 6959 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/commands/review-code-pr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
allowed-tools: Bash(gh pr diff:*),Bash(gh pr view:*),Bash(check-compiler.sh:*)
3-
description: Review a code contribution pull request
3+
description: Run the coding-standards rule linter on a PR diff. Use when user wants to review their changes against our custom rules.
44
---
55

66
Perform a comprehensive PR review using a specialized subagent:

Mobile-Expensify

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ android {
111111
minSdkVersion rootProject.ext.minSdkVersion
112112
targetSdkVersion rootProject.ext.targetSdkVersion
113113
multiDexEnabled rootProject.ext.multiDexEnabled
114-
versionCode 1009036423
115-
versionName "9.3.64-23"
114+
versionCode 1009036605
115+
versionName "9.3.66-5"
116116
// Supported language variants must be declared here to avoid from being removed during the compilation.
117117
// This also helps us to not include unnecessary language variants in the APK.
118118
resConfigs "en", "es"

assets/images/bank-lock.svg

Lines changed: 1 addition & 0 deletions
Loading

assets/images/bot.svg

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

assets/images/table-pencil.svg

Lines changed: 1 addition & 0 deletions
Loading

config/eslint/eslint.config.mjs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,16 @@ const config = defineConfig([
269269
'@typescript-eslint/max-params': ['error', {max: 10}],
270270
'@typescript-eslint/naming-convention': [
271271
'error',
272+
{
273+
selector: ['variable', 'property'],
274+
format: null,
275+
// Allow __esModule because it is a well-known interop property injected by bundlers
276+
// (e.g. Babel/Webpack) and sometimes required by library internals (e.g. react-native-skia).
277+
filter: {
278+
regex: '^__esModule$',
279+
match: true,
280+
},
281+
},
272282
{
273283
selector: ['variable', 'property'],
274284
format: ['camelCase', 'UPPER_CASE', 'PascalCase'],

0 commit comments

Comments
 (0)