mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-21 22:30:57 +00:00
Two unrelated edits had crept in. The added `.claude/` line duplicates `/.claude`, which the same file has already carried since well before this branch, so it never changed behaviour. Removing the root `.env.*` rule did change behaviour: contributors lost repo-level cover for any env file outside docker/telemetry, and the local ignore that masks this on one machine is not part of the repo. Restore the rule and drop the duplicate, which leaves the root gitignore byte-identical to the parent branch. The scoped rules added under docker/telemetry stay: they keep the three tracked .env.*.example files visible and stop the generated Grafana Cloud dashboards being committed, which is telemetry work this branch owns.
95 lines
1.2 KiB
Plaintext
95 lines
1.2 KiB
Plaintext
# .gitignore
|
|
# cspell: disable
|
|
|
|
# Macintosh Desktop Services Store files.
|
|
.DS_Store
|
|
|
|
# Build, intermediate, and temporary artifacts.
|
|
*~
|
|
*.o
|
|
*.pdb
|
|
*.swp
|
|
/.clangd
|
|
Debug/
|
|
Release/
|
|
/.build/
|
|
/.venv/
|
|
/build/
|
|
/db/
|
|
/out.txt
|
|
/Testing/
|
|
/tmp/
|
|
CMakeSettings.json
|
|
CMakeUserPresets.json
|
|
|
|
# Coverage files.
|
|
*.gcno
|
|
*.gcda
|
|
*.gcov
|
|
|
|
# Profiling data.
|
|
gmon.out
|
|
|
|
# Levelization data.
|
|
.github/scripts/levelization/results/*
|
|
!.github/scripts/levelization/results/loops.txt
|
|
!.github/scripts/levelization/results/ordering.txt
|
|
|
|
# Customized configs.
|
|
/rippled.cfg
|
|
/xrpld.cfg
|
|
/validators.txt
|
|
|
|
# Locally patched Conan recipes
|
|
external/conan-center-index/
|
|
|
|
# Local conan directory
|
|
.conan
|
|
|
|
# XCode IDE.
|
|
*.pbxuser
|
|
!default.pbxuser
|
|
*.mode1v3
|
|
!default.mode1v3
|
|
*.mode2v3
|
|
!default.mode2v3
|
|
*.perspectivev3
|
|
!default.perspectivev3
|
|
xcuserdata
|
|
profile
|
|
*.moved-aside
|
|
DerivedData
|
|
*.hmap
|
|
|
|
# JetBrains IDE.
|
|
/.idea/
|
|
|
|
# Microsoft Visual Studio IDE.
|
|
/.vs/
|
|
/.vscode/
|
|
|
|
# zed IDE.
|
|
/.zed/
|
|
|
|
# AI tools.
|
|
/.agent
|
|
/.agents
|
|
/.augment
|
|
/.claude
|
|
/CLAUDE.md
|
|
|
|
# Python
|
|
__pycache__
|
|
|
|
# Rust build artifacts.
|
|
target/
|
|
|
|
# Direnv's directory
|
|
/.direnv
|
|
|
|
# clangd cache
|
|
/.cache
|
|
|
|
# Env. file carrying environmental setup data for local or cloud runs.
|
|
.env.*
|