Skip to content

Commit 5668c35

Browse files
committed
Merge branch 'main' into feat/86338-broken-card-reconnection-eliran
2 parents 93d9c21 + 3031061 commit 5668c35

406 files changed

Lines changed: 8038 additions & 3696 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:

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ yarn-error.log
5858
# Bundled code
5959
dist/
6060

61-
# Generated eslint-report HTML (npm run eslint-report)
62-
/reports/
61+
# Generated eslint-report HTML (npm run eslint-report; written under .eslint-reports/)
62+
/.eslint-reports/
6363

6464
# BUCK
6565
buck-out/

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ index.js
2222
web/snippets/**
2323

2424
# Automatically generated files
25+
.eslint-reports/
2526
src/libs/SearchParser/searchParser.js
2627
src/libs/SearchParser/autocompleteParser.js
2728

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 1009036506
115+
versionName "9.3.65-6"
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/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: 11 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'],
@@ -738,6 +748,7 @@ const config = defineConfig([
738748
'**/*.config.mjs',
739749
'**/node_modules/**/*',
740750
'**/dist/**/*',
751+
'.eslint-reports/**/*',
741752
'android/**/build/**/*',
742753
'docs/vendor/**/*',
743754
'docs/assets/**/*',

0 commit comments

Comments
 (0)