Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
53 changes: 0 additions & 53 deletions .clang-format

This file was deleted.

86 changes: 0 additions & 86 deletions .github/workflows/pr-format-check.yml

This file was deleted.

182 changes: 86 additions & 96 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,109 +1,99 @@
# Build directories
# Compiled class files
*.class

# Log files
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# Virtual machine crash logs
hs_err_pid*
replay_pid*

# Maven
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar

# Gradle
.gradle/
build/
build-*/
build_*/
cmake-build-*/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/

# IDE - IntelliJ IDEA
.idea/
*.iws
*.iml
*.ipr
out/

# IDE - Eclipse
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
lib/
# Exception: Allow Ruby SDK lib directory
!sdk/ruby/lib/

# CMake generated files
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
CTestTestfile.cmake
Testing/
_deps/
# Note: We have a hand-written Makefile at root, so only ignore generated ones in subdirs
*/Makefile

# Compiled object files
*.o
*.obj
*.lo
*.slo

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app
test_variant
test_variant_advanced
test_variant_extensive
test_optional
test_optional_advanced
test_optional_extensive
test_type_helpers
test_mcp_types
test_mcp_types_extended
test_mcp_type_helpers
test_compat
test_buffer
test_json
test_event_loop
test_io_socket_handle
test_address
test_socket
test_socket_interface
test_socket_option

# IDE specific files

# IDE - NetBeans
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

# IDE - VS Code
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Dependency directories
node_modules/
vendor/
# Native library build
native/
cmake-build-*/

# Coverage files
*.gcov
*.gcda
*.gcno
coverage/
*.info
# JNI generated headers
*.h.gch

# Documentation
docs/html/
docs/latex/
doxygen/
# Logs
*.log

# Temporary files
*.tmp
*.temp
*.log

# Python cache (if using Python scripts)
__pycache__/
*.py[cod]
*$py.class
*.swp
*.swo
*~

# OS generated files
Thumbs.db
Desktop.ini
# Node.js (for example MCP servers)
node_modules/
7 changes: 3 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[submodule "third_party/gopher-mcp"]
path = third_party/gopher-mcp
url = https://github.com/GopherSecurity/gopher-mcp.git
branch = main
[submodule "third_party/gopher-orch"]
path = third_party/gopher-orch
url = https://github.com/GopherSecurity/gopher-orch.git
Loading