From a77c6ed66201054d27d3396a7400385873a1b1a7 Mon Sep 17 00:00:00 2001 From: Owen Buckley Date: Sat, 13 May 2023 16:26:47 -0400 Subject: [PATCH] init commit --- .editorconfig | 10 ++++++++++ .gitattributes | 27 +++++++++++++++++++++++++++ .gitignore | 5 +++++ .nvmrc | 1 + 4 files changed, 43 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .nvmrc diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ea52ef4 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = false \ No newline at end of file diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9d9a0c5 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,27 @@ +* text eol=lf + +*.bat text eol=crlf +*.sh text eol=lf + +*.jpg binary +*.jpeg binary +*.png binary +*.avif binary +*.webp binary +*.gif binary +*.ico binary +*.woff binary +*.woff2 binary +*.ttf binary +*.eot binary +*.flv binary +*.mp4 binary +*.3gp binary +*.mov binary +*.avi binary +*.wmv binary +*.ogg binary +*.oga binary +*.ogg binary +*.mp3 binary +*.wav binary \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fcbd541 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.greenwood/ + +node_modules/ +public/ +.vercel diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..72c7744 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +18.12.1 \ No newline at end of file