From 10dcf38a1942096e3ddc54bccad98b90de2f059f Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Fri, 6 Oct 2023 05:22:15 +0200 Subject: [PATCH] feat: added editorconfig --- .ecrc | 4 ++++ .ecrc.license | 3 +++ .editorconfig | 19 +++++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 .ecrc create mode 100644 .ecrc.license create mode 100644 .editorconfig diff --git a/.ecrc b/.ecrc new file mode 100644 index 0000000..1dc83fd --- /dev/null +++ b/.ecrc @@ -0,0 +1,4 @@ +{ + "IgnoreDefaults": false, + "Exclude": ["^LICENSE$", "^LICENSES/.*"] +} diff --git a/.ecrc.license b/.ecrc.license new file mode 100644 index 0000000..37bf852 --- /dev/null +++ b/.ecrc.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023 Tobias Schmidl + +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..296fecd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +# SPDX-FileCopyrightText: 2023 Tobias Schmidl +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.{yaml,yml}] +indent_size = 2