From 09f138abbb75dd976df72beabfb78568a9eae4a2 Mon Sep 17 00:00:00 2001 From: Nicolas Domenech Date: Wed, 28 Feb 2024 16:10:10 +0100 Subject: [PATCH] #1 [Mod] add: missing editorconfig and package.json --- .editorconfig | 19 +++++++++++++++++++ package.json | 10 ++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .editorconfig create mode 100644 package.json diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..5b0885a --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +# EditorConfig is awesome: https://editorconfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.php] +indent_size = 4 + +[*.md] +trim_trailing_whitespace = false diff --git a/package.json b/package.json new file mode 100644 index 0000000..012c094 --- /dev/null +++ b/package.json @@ -0,0 +1,10 @@ +{ + "author": "Evarisk", + "contributors": [ + { + "name": "Evarisk", + "email": "technique@evarisk.com" + } + ], + "license": "GPLv3" +}