diff options
| author | Nikolay Govorov <me@govorov.online> | 2026-08-29 23:32:10 +0100 |
|---|---|---|
| committer | Nikolay Govorov <me@govorov.online> | 2026-08-29 23:32:10 +0100 |
| commit | 69ce81563d12d04e72be50ce1cf1423d051d52ea (patch) | |
| tree | 67343519595e200e6e9efddfeb0e3b2287079989 | |
| parent | a86436a14e616ee52d7eef79cbc03388aa53318b (diff) | |
| download | tar tar.gz tar.bz2 tar.lz tar.xz tar.zst zip | |
Add codeowners, .gitignore and .editorconfig
Diffstat
| -rw-r--r-- | .editorconfig | 26 | +26 −0 |
| -rw-r--r-- | .gitignore | 7 | +4 −3 |
| -rw-r--r-- | CODEOWNERS | 4 | +4 −0 |
3 files changed, 34 insertions, 3 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 --- /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 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,4 @@ +# SPDX-FileCopyrightText: 2026 Nikolay Govorov +# SPDX-License-Identifier: AGPL-3.0-or-later + +* @mrdimidium |
