From 4d2a6db4840ab1bf10169e4fdff5acd5f1a967a3 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Tue, 1 Feb 2022 03:02:30 -0800 Subject: [PATCH] repo metadata --- .gitattributes | 6 ++++++ .gitignore | 3 +++ LICENSE | 21 +++++++++++++++++++++ 3 files changed, 30 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 LICENSE diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..cc1418390a7cf29ac947cd58ea803634eb9a8388 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +* text=auto +*.zig text eol=lf +zig.mod text eol=lf +zigmod.* text eol=lf +zig.mod linguist-language=YAML +zig.mod gitlab-language=yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..71969716e3e9ca87fdafa1839c25c6daf7da7560 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +zig-* +.zigmod +deps.zig diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..37be0c1cfa4f097edbb1fb5c0585cd18cb08df13 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Meghan Denny + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -- 2.54.0