mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-07-06 04:44:21 +00:00
e8171ab4f7
* chore: ignore local .cursor directory * fix(xray): sync routing rules when outbound tag is renamed Renaming an outbound in the Outbounds tab only updated the outbound list, leaving routing rules pointing at the old tag. Propagate tag changes to routing rules, balancer selectors, and sockopt dialerProxy references, matching the behavior already used for balancer and WARP/Nord renames. * test: mock HttpUtil to fix unhandled vitest rejections * test(frontend): mock axios globally to prevent flaky network errors on CI * test(frontend): fix eslint any errors in component test setup --------- Co-authored-by: Rqzbeh <rqzbeh@users.noreply.github.com>
48 lines
591 B
Plaintext
48 lines
591 B
Plaintext
# Ignore editor and IDE settings
|
|
.idea/
|
|
.vscode/
|
|
.cursor/
|
|
.claude/
|
|
.cache/
|
|
.sync*
|
|
|
|
# Ignore log files
|
|
*.log
|
|
|
|
# Ignore temporary files
|
|
tmp/
|
|
*.tar.gz
|
|
|
|
# Ignore build and distribution directories
|
|
backup/
|
|
bin/
|
|
dist/
|
|
!web/dist/
|
|
web/dist/*
|
|
!web/dist/.gitkeep
|
|
release/
|
|
node_modules/
|
|
|
|
# Ignore compiled binaries
|
|
main
|
|
|
|
# Ignore script and executable files
|
|
/release.sh
|
|
/x-ui
|
|
|
|
# Ignore OS specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Ignore Go build files
|
|
*.exe
|
|
x-ui.db
|
|
x-ui.db-shm
|
|
x-ui.db-wal
|
|
*.dump
|
|
|
|
# Ignore Docker specific files
|
|
docker-compose.override.yml
|
|
|
|
# Ignore .env (Environment Variables) file
|
|
.env |