From a49469cd9e8b933a8894b5814fe77f97db3ad227 Mon Sep 17 00:00:00 2001 From: Alvar San Martin Date: Wed, 7 Jan 2026 16:47:14 +0100 Subject: [PATCH] First commit --- .editorconfig | 8 ++++++++ .gitattributes | 4 ++++ .gitignore | 17 +++++++++++++++++ README.md | 1 + package.json | 4 ++++ 5 files changed, 34 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 README.md create mode 100644 package.json diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..025dd8c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true 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..f03eaec --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions + +# Whether you use PnP or not, the node_modules folder is often used to store +# build artifacts that should be gitignored +node_modules + +# 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..3debc9e --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# sim-cola-eventos diff --git a/package.json b/package.json new file mode 100644 index 0000000..cd98141 --- /dev/null +++ b/package.json @@ -0,0 +1,4 @@ +{ + "name": "sim-cola-eventos", + "packageManager": "yarn@4.12.0" +}