From 69ce81563d12d04e72be50ce1cf1423d051d52ea Mon Sep 17 00:00:00 2001 From: Nikolay Govorov Date: Sat, 29 Aug 2026 23:32:10 +0100 Subject: Add codeowners, .gitignore and .editorconfig --- .editorconfig | 26 ++++++++++++++++++++++++++ .gitignore | 7 ++++--- CODEOWNERS | 4 ++++ 3 files changed, 34 insertions(+), 3 deletions(-) create mode 100644 .editorconfig create mode 100644 CODEOWNERS diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..fa7d6d2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,26 @@ +# SPDX-FileCopyrightText: 2026 Nikolay Govorov +# SPDX-License-Identifier: AGPL-3.0-or-later + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +[*.md] +# double whitespace at end of line +# denotes a line break in Markdown +trim_trailing_whitespace = false + +[*.rs] +max_line_length = 100 + +[*.yml] +indent_size = 2 + +[{Makefile,*.mk}] +indent_style = tab diff --git a/.gitignore b/.gitignore index aa377c6..ef36af8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,10 @@ # SPDX-FileCopyrightText: 2026 Nikolay Govorov # SPDX-License-Identifier: AGPL-3.0-or-later -/target /dist -/.container -/.recluse-state +/target mise.local.toml mise.*.local.toml + +/.container +/.recluse-state diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..faf8e2e --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,4 @@ +# SPDX-FileCopyrightText: 2026 Nikolay Govorov +# SPDX-License-Identifier: AGPL-3.0-or-later + +* @mrdimidium -- Gilti