├── .clang-format ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin ├── check-clang-format.js ├── darwin_x64 │ └── clang-format ├── git-clang-format ├── linux_x64 │ └── clang-format └── win32 │ └── clang-format.exe ├── index.js ├── package.json ├── test.sh └── testproject ├── lib └── test.js └── package.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/README.md -------------------------------------------------------------------------------- /bin/check-clang-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/bin/check-clang-format.js -------------------------------------------------------------------------------- /bin/darwin_x64/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/bin/darwin_x64/clang-format -------------------------------------------------------------------------------- /bin/git-clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/bin/git-clang-format -------------------------------------------------------------------------------- /bin/linux_x64/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/bin/linux_x64/clang-format -------------------------------------------------------------------------------- /bin/win32/clang-format.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/bin/win32/clang-format.exe -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/package.json -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/test.sh -------------------------------------------------------------------------------- /testproject/lib/test.js: -------------------------------------------------------------------------------- 1 | a(); b(); 2 | -------------------------------------------------------------------------------- /testproject/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/clang-format/HEAD/testproject/package.json --------------------------------------------------------------------------------