From 2503d0c1f762f2f954d978d64b04175d7131c8e9 Mon Sep 17 00:00:00 2001 From: Hiroki Osame Date: Thu, 2 Mar 2023 10:03:50 +0900 Subject: [PATCH] chore: add development files --- .editorconfig | 12 ++++++++++++ .gitattributes | 1 + .gitignore | 3 --- .vscode/settings.json | 3 +++ 4 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 .editorconfig create mode 100644 .gitattributes create mode 100644 .vscode/settings.json diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1c6314a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +indent_style = tab +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.yml] +indent_style = space +indent_size = 2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6313b56 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf diff --git a/.gitignore b/.gitignore index c619c0b..12ce412 100644 --- a/.gitignore +++ b/.gitignore @@ -19,9 +19,6 @@ lerna-debug.log* .env .env.test -# VSCode -.vscode - # Distribution dist diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..af6434b --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "typescript.tsdk": "node_modules/typescript/lib" +} \ No newline at end of file