├── .github ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── CMakeLists.txt ├── COPYING.md ├── LICENSE.md ├── README.md ├── clang-format_version.txt ├── clang_format └── __init__.py ├── pyproject.toml └── test ├── __init__.py ├── helloworld.cc ├── helloworld_format.cc └── test_clang_format.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssciwr/clang-format-wheel/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssciwr/clang-format-wheel/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssciwr/clang-format-wheel/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssciwr/clang-format-wheel/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssciwr/clang-format-wheel/HEAD/COPYING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssciwr/clang-format-wheel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssciwr/clang-format-wheel/HEAD/README.md -------------------------------------------------------------------------------- /clang-format_version.txt: -------------------------------------------------------------------------------- 1 | 21.1.7.0 2 | -------------------------------------------------------------------------------- /clang_format/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssciwr/clang-format-wheel/HEAD/clang_format/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssciwr/clang-format-wheel/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helloworld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssciwr/clang-format-wheel/HEAD/test/helloworld.cc -------------------------------------------------------------------------------- /test/helloworld_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssciwr/clang-format-wheel/HEAD/test/helloworld_format.cc -------------------------------------------------------------------------------- /test/test_clang_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssciwr/clang-format-wheel/HEAD/test/test_clang_format.py --------------------------------------------------------------------------------