commit 331d6ae41ac7ca3137992756f81a53e1df5722f5 Author: Chuck Dries Date: Wed Feb 14 22:24:13 2024 -0800 First commit diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1ed453a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true + +[*.{js,json,yml}] +charset = utf-8 +indent_style = space +indent_size = 2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..af3ad12 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +/.yarn/** linguist-vendored +/.yarn/releases/* binary +/.yarn/plugins/**/* binary +/.pnp.* binary linguist-generated diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..870eb6a --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions + +# Swap the comments on the following lines if you wish to use zero-installs +# In that case, don't forget to run `yarn config set enableGlobalCache false`! +# Documentation here: https://yarnpkg.com/features/caching#zero-installs + +#!.yarn/cache +.pnp.* diff --git a/README.md b/README.md new file mode 100644 index 0000000..eb045ec --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# knowledge-sidekick diff --git a/package.json b/package.json new file mode 100644 index 0000000..9be7f46 --- /dev/null +++ b/package.json @@ -0,0 +1,4 @@ +{ + "name": "knowledge-sidekick", + "packageManager": "yarn@4.1.0" +}