From: Lukas Krickl Date: Thu, 24 Apr 2025 16:49:23 +0000 (+0200) Subject: chore: Removed dependencies to clang X-Git-Url: https://git.krickl.dev/?a=commitdiff_plain;h=1b1a5454b7720a4d16062aa41f2dcb38c9956a75;p=ulas%2F.git chore: Removed dependencies to clang --- diff --git a/.clang-format b/.clang-format deleted file mode 100644 index ac7dcd1..0000000 --- a/.clang-format +++ /dev/null @@ -1 +0,0 @@ -SortIncludes: false diff --git a/.clang-tidy b/.clang-tidy deleted file mode 100644 index ecc59c3..0000000 --- a/.clang-tidy +++ /dev/null @@ -1,40 +0,0 @@ ---- -Checks: "*, - -abseil-*, - -llvm*, - -google*, - -modernize-use-trailing-return-type, - -readability-else-after-return, - -readability-static-accessed-through-instance, - -readability-avoid-const-params-in-decls, - -misc-unused-parameters, - -bugprone-easily-swappable-parameters, - -cert-err33-c, - -readability-identifier-length, - -altera-unroll-loops, - -cppcoreguidelines-avoid-non-const-global-variables, - -altera-struct-pack-align, - -cppcoreguidelines-avoid-magic-numbers, - -readability-magic-numbers, - -cert-err34-c, - -readability-function-cognitive-complexity, - -altera-id-dependent-backward-branch, - -clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling, - -misc-no-recursion, - -concurrency-mt-unsafe, - -hicpp-signed-bitwise, - -misc-include-cleaner, - -modernize-macro-to-enum, - -hicpp-uppercase-literal-suffix,readability-uppercase-literal-suffix, - -readability-uppercase-literal-suffix, - -hicpp-function-size, - -readability-function-size, - -cert-env33-c, - -cppcoreguidelines-macro-to-enum -" -WarningsAsErrors: '' -HeaderFilterRegex: '' -FormatStyle: None - - - diff --git a/.clangd b/.clangd deleted file mode 100644 index 0e17bae..0000000 --- a/.clangd +++ /dev/null @@ -1,2 +0,0 @@ -Diagnostics: - UnusedIncludes: None diff --git a/makefile b/makefile index bd7a782..7badfd8 100644 --- a/makefile +++ b/makefile @@ -50,22 +50,6 @@ install: cp ./man/$(NAME).1 $(INSTALL_DIR)/man/man1 cp ./man/$(NAME).5 $(INSTALL_DIR)/man/man5 -.PHONY: tags -tags: - ctags --recurse=yes --exclude=.git --extras=* --fields=* --c-kinds=* --language-force=C . - -.PHONY: ccmds -ccmds: - bear -- make SHELL="sh -x -e" --always-make - -.PHONY: format -format: - clang-format -i ./src/*.c ./src/*.h - -.PHONY: lint -lint: - clang-tidy ./src/*.h ./src/*.c - buildtests: bin ./$(NAME) tests/t0.s -D ULAS_PREDEF -l - -o tests/t0.bin ./$(NAME) tests/t0.bin -d - -o tests/t0_dasm.s