chore: Removed dependencies to clang
authorLukas Krickl <lukas@krickl.dev>
Thu, 24 Apr 2025 16:49:23 +0000 (18:49 +0200)
committerLukas Krickl <lukas@krickl.dev>
Thu, 24 Apr 2025 16:49:23 +0000 (18:49 +0200)
.clang-format [deleted file]
.clang-tidy [deleted file]
.clangd [deleted file]
makefile

diff --git a/.clang-format b/.clang-format
deleted file mode 100644 (file)
index ac7dcd1..0000000
+++ /dev/null
@@ -1 +0,0 @@
-SortIncludes: false
diff --git a/.clang-tidy b/.clang-tidy
deleted file mode 100644 (file)
index ecc59c3..0000000
+++ /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 (file)
index 0e17bae..0000000
--- a/.clangd
+++ /dev/null
@@ -1,2 +0,0 @@
-Diagnostics:
-  UnusedIncludes: None 
index bd7a782afb135c062628162721f1c684d9ec01b2..7badfd825a4355bf1d11639d23ad2a9401be25c7 100644 (file)
--- 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