From 8ad54a11f4c8bd8d4dc9e6a9a223e01f6bd58f58 Mon Sep 17 00:00:00 2001 From: nutra-bot Date: Wed, 24 Dec 2025 09:42:25 +0000 Subject: [PATCH 1/1] disable password auth; .gitignore, .editorconfig --- .editorconfig | 40 ++++++++++++++++++++++++++++++++++++++++ .gitignore | 9 +++++++++ 2 files changed, 49 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..376972d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,40 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true + +max_line_length = 100 + + +[{default,default.conf}] +indent_size = 2 + + +[{nutra,*.py}] +max_line_length = 88 + + +[*.{yaml,yml}] +indent_size = 2 + + +[Makefile] +indent_style = tab +max_line_length = 120 + + +[*.md] +max_line_length = 90 +trim_trailing_whitespace = false + + +[*.rst] +max_line_length = 79 + + +[{COMMIT_EDITMSG,MERGE_MSG,SQUASH_MSG,TAG_EDITMSG,git-rebase-todo}] +max_line_length = 72 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..49917a2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# Ignore all +* +#**/* +#** +# Unignore all with extensions +#!*.* +# Unignore all dirs +# !*/ + -- 2.52.0