mirror of
https://github.com/XRPLF/rippled.git
synced 2026-09-08 16:40:25 +00:00
Point Build/Testing/Lint/Code Style sections at BUILD.md, CONTRIBUTING.md, and docs/CodingStyle.md instead of duplicating them (the duplicated 80-char line length was already stale vs. the 100-char clang-format limit). Require Nix on Linux/macOS, add gtest-in-src/tests guidance for new tests, note amendment retirement in tx/AGENTS.md, drop the CLAUDE.md-symlink/CONTRIBUTING.md sentences, and drop the unconfirmed .aider.* gitignore entries.
100 lines
1.4 KiB
Plaintext
100 lines
1.4 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.
|
|
# Shared/committable AI agent config (AGENTS.md, CLAUDE.md, GEMINI.md, .claude/settings.json,
|
|
# tool-specific rules files, etc.) should be checked in — see CONTRIBUTING.md. Only the
|
|
# personal/local variants below are ignored.
|
|
/.agent
|
|
/.agents
|
|
/.augment
|
|
/.claude/settings.local.json
|
|
AGENTS.local.md
|
|
CLAUDE.local.md
|
|
GEMINI.local.md
|
|
|
|
# Python
|
|
__pycache__
|
|
|
|
# Rust build artifacts.
|
|
target/
|
|
|
|
# Direnv's directory
|
|
/.direnv
|
|
|
|
# clangd cache
|
|
/.cache
|
|
|
|
# Rust build directory
|
|
crates/target
|