Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
016335d
feat: add location distance filtering to useLocation hook and impleme…
ABEEGOLD Aug 19, 2026
8bcc4d5
feat: implement useLocation watchPosition and tests
ABEEGOLD Aug 19, 2026
2e0f86c
fix: resolve all TypeScript compilation errors
ABEEGOLD Aug 19, 2026
9b918b1
Merge branch 'main' into hook—permission-handling
ABEEGOLD Aug 19, 2026
ac20542
refactor: clean up unused location tracking logic and resolve TypeScr…
ABEEGOLD Aug 19, 2026
3dde2a9
refactor: improve type safety and maintainability by upgrading react-…
ABEEGOLD Aug 19, 2026
30769cd
fix(ci): use legacy-peer-deps to bypass strict peer dependency checks
ABEEGOLD Aug 19, 2026
ada9671
Merge branch 'main' into hook—permission-handling
cybermax4200 Aug 19, 2026
0b94884
Merge branch 'main' into hook—permission-handling
ABEEGOLD Aug 20, 2026
640e6bc
fix(ci): resolve syntax error and remove unused import in useLocation…
ABEEGOLD Aug 20, 2026
4813889
chore: sync package-lock.json
ABEEGOLD Aug 20, 2026
675dc34
Merge branch 'main' into hook—permission-handling
ABEEGOLD Aug 21, 2026
c7a90b6
fix: resolve typescript typecheck errors
ABEEGOLD Aug 21, 2026
fc3c11c
Merge branch 'main' into hook—permission-handling
ABEEGOLD Aug 23, 2026
6a96963
fix: resolve typecheck and lint issues in useLocation and eslintrc
ABEEGOLD Aug 23, 2026
358a015
fix(lint): resolve ESLint and TS issues in useLocation.ts
ABEEGOLD Aug 23, 2026
f2b4920
fix(lint): restore parserOptions.project for type-aware rules
ABEEGOLD Aug 23, 2026
8056341
fix(lint): resolve remaining lint errors from copilot analysis
ABEEGOLD Aug 23, 2026
616bf65
fix(lint): resolve hidden no-explicit-any violations
ABEEGOLD Aug 23, 2026
78afc1d
fix(lint): resolve unused vars and inferrable types
ABEEGOLD Aug 24, 2026
291bcf1
fix(lint): remove unused Platform import
ABEEGOLD Aug 24, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
android/
ios/
.bundle/
coverage/
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ module.exports = {
},
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/stylistic',
],
rules: {
'@typescript-eslint/no-floating-promises': 'warn',
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm ci --legacy-peer-deps
- run: npx eslint src/

typecheck:
Expand All @@ -32,7 +32,7 @@ jobs:
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm ci --legacy-peer-deps
- run: npm test -- --passWithNoTests

build:
Expand All @@ -43,6 +43,6 @@ jobs:
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm ci --legacy-peer-deps
- run: npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output /tmp/android-bundle.js
- run: npx react-native bundle --platform ios --dev false --entry-file index.js --bundle-output /tmp/ios-bundle.js
Loading
Loading