From 775823c8b1e6e8feaad9c0888de2157687698434 Mon Sep 17 00:00:00 2001 From: devclyde Date: Wed, 22 Jun 2022 22:30:16 -0300 Subject: [PATCH] feat: initial commit --- .editorconfig | 11 +++++++++++ .stylua.toml | 6 ++++++ 2 files changed, 17 insertions(+) create mode 100644 .editorconfig create mode 100644 .stylua.toml diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a21d883 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +charset = utf-8 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{lua,json,toml}] +indent_style = space +indent_size = 2 diff --git a/.stylua.toml b/.stylua.toml new file mode 100644 index 0000000..a2dd26b --- /dev/null +++ b/.stylua.toml @@ -0,0 +1,6 @@ +column_width = 80 +line_endings = "Unix" +indent_type = "Spaces" +indent_width = 4 +quote_style = "AutoPreferSingle" +call_parentheses = "Always"