From b41284816cba92bd4afcc9944c86ab60dbd9fbfd Mon Sep 17 00:00:00 2001 From: HeavyRain266 <71175207+HeavyRain266@users.noreply.github.com> Date: Thu, 9 Sep 2021 08:26:09 +0100 Subject: [PATCH] Add .editorconfig (#107) * Add .editorconfig * Update README.md Co-authored-by: gokul <33443763+JavaCafe01@users.noreply.github.com> --- .editorconfig | 23 +++++++++++++++++++++++ README.md | 12 +++--------- 2 files changed, 26 insertions(+), 9 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d74164c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,23 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = tab +trim_trailing_whitespace = true + +[*.lua] +indent_size = 4 +indent_style = space + +[*.yml] +indent_size = 2 +indent_style = space + +[*.{html,css}] +indent_size = 2 +indent_style = space + +[*.md] +trim_trailing_whitespace = false diff --git a/README.md b/README.md index ddecacf..fd46651 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@
- +
@@ -36,12 +36,6 @@ In order to use the `tabbed` modules `pick` function, you need to install `xwini Contributions are welcome 💛 -When adding a module/layout/signal, please add theme variables for customization and add the according documentation under `docs`. +Before requesting changes, makes sure that your editor has an "editorconfig" extension installed, this will use our code style everytime when you edit in the `bling` folder. -A special thanks to all our contributors... - - - - - -Made with [contributors-img](https://contrib.rocks). +When adding a layout/module/signal/widget, please add theme variables for customization and add the according documentation under `docs`.