From e762645c37bd050cd84055f8e23f64aa16704ae7 Mon Sep 17 00:00:00 2001 From: GuilhermeWerner Date: Sun, 3 Jan 2021 10:54:20 -0300 Subject: [PATCH] Configure Workspace --- .editorconfig | 12 ++++++++++++ Library.code-workspace | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .editorconfig create mode 100644 Library.code-workspace diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..88df879 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +end_of_line = lf +indent_style = space +indent_size = 4 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false diff --git a/Library.code-workspace b/Library.code-workspace new file mode 100644 index 0000000..8739f76 --- /dev/null +++ b/Library.code-workspace @@ -0,0 +1,12 @@ +{ + "folders": [ + { + "path": "." + } + ], + "settings": { + "files.associations": { + "*.toml": "properties" + } + } +}