├── .clang-format ├── .clang-tidy ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.TXT ├── Makefile ├── README.md ├── TODO.md ├── extra ├── clang-checks-doc.zip └── screenshot.png ├── src ├── autotidy.cpp ├── autotidy.h ├── catch.hpp ├── main.cpp ├── makedoc.cpp ├── manpages.cpp ├── patched_file.h ├── patched_file.test.cpp ├── path.h ├── replacer.h ├── testcode.cpp ├── testmain.cpp └── utils.h └── testfile.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/TODO.md -------------------------------------------------------------------------------- /extra/clang-checks-doc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/extra/clang-checks-doc.zip -------------------------------------------------------------------------------- /extra/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/extra/screenshot.png -------------------------------------------------------------------------------- /src/autotidy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/src/autotidy.cpp -------------------------------------------------------------------------------- /src/autotidy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/src/autotidy.h -------------------------------------------------------------------------------- /src/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/src/catch.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/makedoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/src/makedoc.cpp -------------------------------------------------------------------------------- /src/manpages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/src/manpages.cpp -------------------------------------------------------------------------------- /src/patched_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/src/patched_file.h -------------------------------------------------------------------------------- /src/patched_file.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/src/patched_file.test.cpp -------------------------------------------------------------------------------- /src/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/src/path.h -------------------------------------------------------------------------------- /src/replacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/src/replacer.h -------------------------------------------------------------------------------- /src/testcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/src/testcode.cpp -------------------------------------------------------------------------------- /src/testmain.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" 3 | -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/src/utils.h -------------------------------------------------------------------------------- /testfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/autotidy/HEAD/testfile.txt --------------------------------------------------------------------------------