From 1e4799a429d9acc61d060030a0263360d3fdcce6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Thu, 11 Jan 2024 23:24:14 +0100 Subject: [PATCH] Synchronize shared files from the .github repository (read: this one) using dotnet-file. --- .editorconfig | 8 +++++++- .gitattributes | 4 ++++ .netconfig | 20 ++++++++++++++++++++ LICENSE-0BSD | 12 ++++++++++++ dotnet-tools.json | 12 ++++++++++++ global.json | 8 ++++++++ 6 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 .netconfig create mode 100644 LICENSE-0BSD create mode 100644 dotnet-tools.json create mode 100644 global.json diff --git a/.editorconfig b/.editorconfig index 9d98fce..06d9e2d 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,5 +9,11 @@ max_line_length = 120 tab_width = 4 trim_trailing_whitespace = true -[*.{json,vsconfig}] +[*.json] +indent_size = 2 + +[*.jsonc] +indent_size = 2 + +[*.vsconfig] indent_size = 2 diff --git a/.gitattributes b/.gitattributes index 9acf740..db06c14 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,5 @@ * text +*.verified.* text eol=lf +*.ico binary +*.png binary +*.zig eol=lf diff --git a/.netconfig b/.netconfig new file mode 100644 index 0000000..90691a6 --- /dev/null +++ b/.netconfig @@ -0,0 +1,20 @@ +[file ".editorconfig"] + url = https://github.com/vezel-dev/.github/blob/master/syn/.editorconfig + sha = 7d581ae5eedad5892855cebc673edafad664856b + etag = 8fa5a445045c6e24f51af44560a6449adf8d297f9e0d7412b39e5e39062cde54 + weak +[file ".gitattributes"] + url = https://github.com/vezel-dev/.github/blob/master/syn/.gitattributes + sha = e1d60d738e36f3741104a47c67156614aa5b9d8b + etag = 57083d3c73ff7ab2740ab17fd99d31cedcff606818190f9a415d97d27b62e7d4 + weak +[file ".markdownlint.json"] + url = https://github.com/vezel-dev/.github/blob/master/syn/.markdownlint.json + sha = 7d581ae5eedad5892855cebc673edafad664856b + etag = cf98ac95cf318b52e206b9003e342de9db2ecb7be062eab6edf1681b1f374b3a + weak +[file "LICENSE-0BSD"] + url = https://github.com/vezel-dev/.github/blob/master/syn/LICENSE-0BSD + sha = 7d581ae5eedad5892855cebc673edafad664856b + etag = 4fe195e9c11a20688615d92035ac752eeac4ab3f3d82b20df798ea6dc1b49aab + weak diff --git a/LICENSE-0BSD b/LICENSE-0BSD new file mode 100644 index 0000000..e850493 --- /dev/null +++ b/LICENSE-0BSD @@ -0,0 +1,12 @@ +BSD Zero Clause License (0BSD) + +Permission to use, copy, modify, and/or distribute this software for any purpose +with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE. diff --git a/dotnet-tools.json b/dotnet-tools.json new file mode 100644 index 0000000..7b78d1f --- /dev/null +++ b/dotnet-tools.json @@ -0,0 +1,12 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "dotnet-file": { + "version": "1.4.1", + "commands": [ + "dotnet-file" + ] + } + } +} diff --git a/global.json b/global.json new file mode 100644 index 0000000..81ea5e7 --- /dev/null +++ b/global.json @@ -0,0 +1,8 @@ +{ + "$schema": "https://json.schemastore.org/global.json", + "sdk": { + "version": "8.0.101", + "rollForward": "disable", + "allowPrelease": false + } +}