| # https://editorconfig.org/ |
| # |
| # SPDX-FileCopyrightText: StorPool <support@storpool.com> |
| # SPDX-License-Identifier: BSD-2-Clause |
| |
| root = true |
| |
| [*] |
| end_of_line = lf |
| insert_final_newline = true |
| charset = utf-8 |
| |
| [*.nix] |
| indent_style = space |
| indent_size = 2 |
| |
| # Mainly for the multi-line "Description: ..." header. |
| [*.patch] |
| indent_style = space |
| indent_size = 1 |
| |
| [*.pl] |
| indent_style = tab |
| tab_size = 8 |
| |
| [*.py] |
| indent_style = space |
| indent_size = 4 |
| |
| [*.toml] |
| indent_style = space |
| indent_size = 2 |
| |
| [sh/git-if-needed] |
| indent_style = tab |
| tab_size = 8 |