From 8587cf395ea640ed6d50baae0d0a681c0aa378b6 Mon Sep 17 00:00:00 2001 From: gebeto Date: Fri, 31 Jul 2020 18:34:17 +0300 Subject: [PATCH] Added editorconfig and added dsstore to ignore --- .editorconfig | 21 +++++++++++++++++++++ .gitignore | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ac34b4a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true + +# Matches multiple files with brace expansion notation +# Set default charset +[*.js] +charset = utf-8 +indent_style = tab +indent_size = 4 + +# Matches the exact files either package.json or .travis.yml +[package.json] +indent_style = space +indent_size = 2 diff --git a/.gitignore b/.gitignore index 6704566..1669a13 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,5 @@ dist # TernJS port file .tern-port + +.DS_Store