From 3ba1350f1bbea12025f29c4e5b14a102cdfd3399 Mon Sep 17 00:00:00 2001 From: soloturn Date: Sun, 2 May 2021 11:46:23 +0200 Subject: [PATCH] force official kotlin style, just in case in case kotlin code is committed, make sure the official style is used, see: https://kotlinlang.org/docs/code-style-migration-guide.html#in-gradle --- .gitignore | 1 - gradle.properties | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 gradle.properties diff --git a/.gitignore b/.gitignore index fb5ed210..896c43fe 100644 --- a/.gitignore +++ b/.gitignore @@ -118,7 +118,6 @@ rips/ .history ripme.jar.update *.swp -*.properties !LabelsBundle*.properties history.json *.iml diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 00000000..7fc6f1ff --- /dev/null +++ b/gradle.properties @@ -0,0 +1 @@ +kotlin.code.style=official