Skip to content

Commit

Permalink
Merge branch 'Expensify:main' into krishna2323/issue/56181
Browse files Browse the repository at this point in the history
  • Loading branch information
Krishna2323 authored Feb 13, 2025
2 parents 2297a90 + fbe2b76 commit 5ebddb2
Show file tree
Hide file tree
Showing 52 changed files with 1,450 additions and 609 deletions.
8 changes: 7 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,14 @@ module.exports = {
{
selector: ['variable', 'property'],
format: ['camelCase', 'UPPER_CASE', 'PascalCase'],
// This filter excludes variables and properties that start with "private_" to make them valid.
//
// Examples:
// - "private_a" → valid
// - "private_test" → valid
// - "private_" → not valid
filter: {
regex: '^private_[a-z][a-zA-Z0-9]+$',
regex: '^private_[a-z][a-zA-Z0-9]*$',
match: false,
},
},
Expand Down
2 changes: 1 addition & 1 deletion Mobile-Expensify
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
versionCode 1009009701
versionName "9.0.97-1"
versionCode 1009009801
versionName "9.0.98-1"
// Supported language variants must be declared here to avoid from being removed during the compilation.
// This also helps us to not include unnecessary language variants in the APK.
resConfigs "en", "es"
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 5ebddb2

Please sign in to comment.