From 8b1f295b6bf5ba050a41e22e5a313e7185b7300c Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Sat, 7 May 2022 16:51:11 +0200 Subject: [PATCH] chore: Exclude .DS_Store files --- .DS_Store | Bin 6148 -> 0 bytes .gitignore | 3 +++ .lift.toml | 4 ---- 3 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 .DS_Store delete mode 100644 .lift.toml diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 8f7026824783bb4152ab96dd1a1ed6fbf1b0dd22..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHKI|>3Z5S{S@f{mqRuHX%V=n1@l$btx>AZWdn=kjR2`83P2ofgU)n7m{%FCnkk z*%1+4-}>w&gLxhmpaMUyfPEhd+^{CLf&S^h;4J`fg0LIr-b(Cld`t<9%r?-!1r*=dBM#vcM1kC$3QQ~SXen;dQ#*Sn`6Hw Uwt-GZ-0496445u7D)4Ou-khQox&QzG diff --git a/.gitignore b/.gitignore index d1add4d55..8e9021360 100644 --- a/.gitignore +++ b/.gitignore @@ -131,5 +131,8 @@ local.properties checkstyle.xml classes/ *.bat + +# Other docs/ build/ +.DS_Store diff --git a/.lift.toml b/.lift.toml deleted file mode 100644 index 1501777dd..000000000 --- a/.lift.toml +++ /dev/null @@ -1,4 +0,0 @@ -jdkVersion = "17" -build = "gradle clean build -x test" -tools = ["findsecbugs", "ErrorProne", "Semgrep", "Detekt", "Infer"] -ignoreRules = ["CatchAndPrintStackTrace", "ReferenceEquality", "FallThrough", "FutureReturnValueIgnored", "MixedMutabilityReturnType", "EmptyCatch", "MissingCasesInEnumSwitch", "OperatorPrecedence", "StaticAssignmentInConstructor", "ReferenceEquality", "EqualsHashCode", "EqualsGetClass", "TypeParameterUnusedInFormals", "StringSplitter", "InlineMeSuggester", "NULL_DEREFERENCE"]