gitextract_7s9z9yf2/ ├── .dockerignore ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── build.yml │ ├── release.yml │ ├── smoke_test.yml │ └── smoke_test_reuse_job.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── AGENTS.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README-ja.md ├── README-zh_cn.md ├── README-zh_tw.md ├── README.md ├── air_example.toml ├── go.mod ├── go.sum ├── hack/ │ └── check.sh ├── hooks/ │ └── pre-commit ├── install.sh ├── main.go ├── runner/ │ ├── _testdata/ │ │ ├── both/ │ │ │ └── .air.toml │ │ ├── child.sh │ │ ├── grandchild.sh │ │ ├── invalid_toml/ │ │ │ └── .air.toml │ │ ├── run-detached-process.sh │ │ ├── run-many-processes.sh │ │ ├── toml/ │ │ │ └── .air.toml │ │ └── watching/ │ │ └── inner/ │ │ └── test.txt │ ├── cmdarg_test.go │ ├── common.go │ ├── config.go │ ├── config_test.go │ ├── engine.go │ ├── engine_test.go │ ├── exiter.go │ ├── flag.go │ ├── flag_test.go │ ├── logger.go │ ├── proxy.go │ ├── proxy.js │ ├── proxy_stream.go │ ├── proxy_stream_test.go │ ├── proxy_test.go │ ├── test_util.go │ ├── util.go │ ├── util_linux.go │ ├── util_linux_test.go │ ├── util_test.go │ ├── util_unix.go │ ├── util_windows.go │ ├── util_windows_test.go │ ├── watcher.go │ └── worker.js ├── smoke_test/ │ ├── check_rebuild/ │ │ ├── go.mod │ │ ├── go.sum │ │ └── main.go │ └── smoke_test.py └── version.go