aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.editorconfig27
-rw-r--r--.github/.editorconfig3
-rw-r--r--contrib/syntax/.editorconfig7
-rw-r--r--platform/rpm/.editorconfig3
-rw-r--r--src/bash_completion/.editorconfig3
-rw-r--r--src/zsh_completion/.editorconfig3
6 files changed, 46 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
index f999431de..7d98c1b14 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -5,3 +5,30 @@ charset = utf-8
5end_of_line = lf 5end_of_line = lf
6insert_final_newline = true 6insert_final_newline = true
7trim_trailing_whitespace = true 7trim_trailing_whitespace = true
8
9# Build
10[configure.ac]
11indent_size = 8
12indent_style = tab
13
14[*{.mk,Makefile}{,.in}]
15indent_size = 8
16indent_style = tab
17
18# Source code and scripts
19[*.{c,h}{,.in}]
20indent_size = 8
21indent_style = tab
22
23[*.{awk,exp,sh}{,.in}]
24indent_size = 8
25indent_style = tab
26
27[*.py{,.in}]
28indent_size = 4
29indent_style = space
30
31# Misc
32[.gitlab-ci.yml]
33indent_size = 4
34indent_style = space
diff --git a/.github/.editorconfig b/.github/.editorconfig
new file mode 100644
index 000000000..eb5c699c5
--- /dev/null
+++ b/.github/.editorconfig
@@ -0,0 +1,3 @@
1[*.yml]
2indent_size = 2
3indent_style = space
diff --git a/contrib/syntax/.editorconfig b/contrib/syntax/.editorconfig
new file mode 100644
index 000000000..385bf17d5
--- /dev/null
+++ b/contrib/syntax/.editorconfig
@@ -0,0 +1,7 @@
1[*.lang{,.in}]
2indent_size = 2
3indent_style = space
4
5[*.vim{,.in}]
6indent_size = 2
7indent_style = space
diff --git a/platform/rpm/.editorconfig b/platform/rpm/.editorconfig
new file mode 100644
index 000000000..964dd36dd
--- /dev/null
+++ b/platform/rpm/.editorconfig
@@ -0,0 +1,3 @@
1[*.sh{,.in}]
2indent_size = 4
3indent_style = space
diff --git a/src/bash_completion/.editorconfig b/src/bash_completion/.editorconfig
new file mode 100644
index 000000000..298a13b5e
--- /dev/null
+++ b/src/bash_completion/.editorconfig
@@ -0,0 +1,3 @@
1[*.bash_completion{,.in}]
2indent_size = 4
3indent_style = space
diff --git a/src/zsh_completion/.editorconfig b/src/zsh_completion/.editorconfig
new file mode 100644
index 000000000..15ca952a4
--- /dev/null
+++ b/src/zsh_completion/.editorconfig
@@ -0,0 +1,3 @@
1[_*{,.in}]
2indent_size = 4
3indent_style = space