From 9b4712478fcd9e14d29b1118854777006eb2dfe4 Mon Sep 17 00:00:00 2001 From: Mark Skelton Date: Fri, 6 Jan 2023 22:20:28 -0600 Subject: [PATCH] Initial commit --- .gitattributes | 2 ++ .github/CODEOWNERS | 1 + .gitignore | 3 +++ .ignore | 1 + .npmignore | 4 ++++ .prettierrc | 5 +++++ LICENSE | 15 +++++++++++++++ 7 files changed, 31 insertions(+) create mode 100644 .gitattributes create mode 100644 .github/CODEOWNERS create mode 100644 .gitignore create mode 100644 .ignore create mode 100644 .npmignore create mode 100644 .prettierrc create mode 100644 LICENSE diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f60d7b9 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +/src/** linguist-vendored +/examples/* linguist-vendored diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..36e5f82 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @mskelton diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6c635dc --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +build/ +target/ diff --git a/.ignore b/.ignore new file mode 100644 index 0000000..8eba6c8 --- /dev/null +++ b/.ignore @@ -0,0 +1 @@ +src/ diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..7650a4c --- /dev/null +++ b/.npmignore @@ -0,0 +1,4 @@ +corpus +examples +build +target diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..0b96807 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,5 @@ +{ + "semi": false, + "proseWrap": "always", + "arrowParens": "avoid" +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..04eb9c3 --- /dev/null +++ b/LICENSE @@ -0,0 +1,15 @@ +ISC License + +Copyright (c) 2023 Mark Skelton + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +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.