summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcflip <cflip@cflip.net>2023-06-01 10:23:27 -0600
committercflip <cflip@cflip.net>2023-06-01 10:23:27 -0600
commit835e4bee6035cdc9759c73fe1d22b37775a7ea6d (patch)
tree7043a2899aa993ec885dcd1edbf5dfbea95e82bf
parentdff6b9583c4cde87b7275f8a8066300004525d68 (diff)
Remove ClangFormat and ClangTidy files
These were leftovers from the C++ version of this project. It might still be nice to have a formatter and static analyzer, but the configurations in those files didn't work well with the new C port.
-rw-r--r--.clang-format6
-rw-r--r--.clang-tidy49
2 files changed, 0 insertions, 55 deletions
diff --git a/.clang-format b/.clang-format
deleted file mode 100644
index fa16c48..0000000
--- a/.clang-format
+++ /dev/null
@@ -1,6 +0,0 @@
----
-Language: Cpp
-BasedOnStyle: WebKit
-UseTab: Always
-TabWidth: 4
-PackConstructorInitializers: NextLine
diff --git a/.clang-tidy b/.clang-tidy
deleted file mode 100644
index 03f3649..0000000
--- a/.clang-tidy
+++ /dev/null
@@ -1,49 +0,0 @@
----
-Checks: '-*,
- bugprone-*,
- cert-*,
- cppcoreguidelines-*,
- clang-diagnostic-*,
- clang-analyzer-*,
- modernize-*,
- performance-*,
- readability-*,
- -modernize-use-trailing-return-type,
- -readability-braces-around-statements'
-WarningsAsErrors: ''
-HeaderFilterRegex: ''
-AnalyzeTemporaryDtors: false
-FormatStyle: 'file'
-CheckOptions:
- - key: llvm-else-after-return.WarnOnConditionVariables
- value: 'false'
- - key: modernize-loop-convert.MinConfidence
- value: reasonable
- - key: modernize-replace-auto-ptr.IncludeStyle
- value: llvm
- - key: modernize-pass-by-value.IncludeStyle
- value: llvm
- - key: google-readability-namespace-comments.ShortNamespaceLines
- value: '10'
- - key: cppcoreguidelines-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
- value: 'true'
- - key: modernize-loop-convert.MaxCopySize
- value: '16'
- - key: cert-dcl16-c.NewSuffixes
- value: 'L;LL;LU;LLU'
- - key: cert-oop54-cpp.WarnOnlyIfThisHasSuspiciousField
- value: 'false'
- - key: cert-str34-c.DiagnoseSignedUnsignedCharComparisons
- value: 'false'
- - key: modernize-use-nullptr.NullMacros
- value: 'NULL'
- - key: llvm-qualified-auto.AddConstToQualified
- value: 'false'
- - key: modernize-loop-convert.NamingStyle
- value: CamelCase
- - key: llvm-else-after-return.WarnOnUnfixable
- value: 'false'
- - key: google-readability-function-size.StatementThreshold
- value: '800'
-...
-