From 09b26542752b4c6b13e91ceae3255b67bd98f82c Mon Sep 17 00:00:00 2001 From: Victor Borges Date: Wed, 30 Apr 2025 00:10:42 -0300 Subject: add pagination support --- .editorconfig | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .editorconfig (limited to '.editorconfig') diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..f666140 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,7 @@ +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +max_line_length = 120 -- cgit v1.2.3 From d97d5f11e7807906cff2cf41cad815fb05b0096c Mon Sep 17 00:00:00 2001 From: Victor Borges Date: Sat, 3 May 2025 15:19:10 -0300 Subject: gets the correct branch now --- .editorconfig | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.editorconfig') diff --git a/.editorconfig b/.editorconfig index f666140..a1c77bf 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,7 +1,12 @@ [*] charset = utf-8 end_of_line = lf -indent_size = 2 indent_style = space insert_final_newline = true max_line_length = 120 + +[{*.ts,*.tsx}] +indent_size = 2 + +[{*.py,*.pyi}] +indent_size = 4 -- cgit v1.2.3