From 633bc26591ba592ade9adcde0b6209490d376d8b Mon Sep 17 00:00:00 2001 From: Ashutosh Khanduala Date: Mon, 16 Dec 2024 16:18:56 +0530 Subject: [PATCH] test ci --- .editorconfig | 10 ++++++++++ .gitattributes | 4 ++++ .gitignore | 2 ++ src/index.ts | 3 +++ 4 files changed, 19 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 src/index.ts 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 index c6bba59..76e449e 100644 --- a/.gitignore +++ b/.gitignore @@ -128,3 +128,5 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* + +.dump diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..e29e78d --- /dev/null +++ b/src/index.ts @@ -0,0 +1,3 @@ +export const add = (a: number, b: number) => { + return a + b +}