From 78111cd31bcfdeac2a41d798fd855351f7b0ba21 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 21 Jun 2022 21:35:20 +0300 Subject: [PATCH] run `v init` to add the missing .editorconfig, .gitattributes and most importantly v.mod --- .editorconfig | 9 +++++++++ .gitattributes | 4 ++++ v.mod | 7 +++++++ 3 files changed, 20 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 v.mod diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..517d63e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.v] +indent_style = tab +indent_size = 4 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..97038df --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +*.v linguist-language=V text=auto eol=lf +*.vv linguist-language=V text=auto eol=lf +*.vsh linguist-language=V text=auto eol=lf +**/v.mod linguist-language=V text=auto eol=lf diff --git a/v.mod b/v.mod new file mode 100644 index 0000000..7eec3de --- /dev/null +++ b/v.mod @@ -0,0 +1,7 @@ +Module { + name: 'gitly' + description: 'A self-hosted Git service, written in V' + version: '0.1.1' + license: 'GPL 3' + dependencies: [] +} -- 2.39.5