aboutsummaryrefslogtreecommitdiffstats
path: root/.editorconfig
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2023-11-02 15:32:43 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2024-03-15 19:19:33 +0100
commit24d5f884978485ad09aa05e8d8deac15cec7bea1 (patch)
tree1e8bf0a02c839dc7b5f5232efebf6e54469bb9cc /.editorconfig
parentSpeed up build with swcMinify (diff)
downloadblog-24d5f884978485ad09aa05e8d8deac15cec7bea1.tar.gz
blog-24d5f884978485ad09aa05e8d8deac15cec7bea1.tar.zst
blog-24d5f884978485ad09aa05e8d8deac15cec7bea1.zip
Formatting with prettier
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig18
1 files changed, 18 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..da8c14c
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,18 @@
1# SPDX-FileCopyrightText: 2023 Kristóf Marussy <kristof@marussy.com
2#
3# SPDX-License-Identifier: MIT
4
5root = true
6
7[*]
8charset = utf-8
9end_of_line = lf
10insert_final_newline = true
11indent_style = space
12indent_size = 2
13trim_trailing_whitespace = true
14max_line_length = 80
15
16[*.{md,mdx}]
17insert_final_newline = false
18trim_trailing_whitespace = false