Introduce .editorconfig
authorEric Engestrom <eric@engestrom.ch>
Tue, 30 Aug 2016 20:02:18 +0000 (21:02 +0100)
committerEric Anholt <eric@anholt.net>
Thu, 1 Sep 2016 00:06:54 +0000 (17:06 -0700)
A few weeks ago, Jose Fonseca suggested [0] we use .editorconfig files
to try and enforce the formatting of the code, to which Michel Dänzer
suggested [1] we start by importing the existing .dir-locals.el
settings. The first draft was discussed in the RFC [2].

These .editorconfig are a first step, one that has the advantage of
requiring little to no intervention from the devs once the settings
files are in place, but the settings are very limited. This does have
the advantage of applying while the code is being written.
This doesn't replace the need for more comprehensive formatting tools
such as clang-format & clang-tidy, but those reformat the code after
the fact.

[0] https://lists.freedesktop.org/archives/mesa-dev/2016-June/121545.html
[1] https://lists.freedesktop.org/archives/mesa-dev/2016-June/121639.html
[2] https://lists.freedesktop.org/archives/mesa-dev/2016-July/123431.html

Acked-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
Acked-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Eric Engestrom <eric@engestrom.ch>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
28 files changed:
.editorconfig [new file with mode: 0644]
bin/.editorconfig [new file with mode: 0644]
include/D3D9/.editorconfig [new file with mode: 0644]
include/c11/.editorconfig [new file with mode: 0644]
include/d3dadapter/.editorconfig [new file with mode: 0644]
include/vulkan/.editorconfig [new file with mode: 0644]
src/egl/drivers/haiku/.editorconfig [new file with mode: 0644]
src/egl/wayland/.editorconfig [new file with mode: 0644]
src/gallium/drivers/freedreno/.editorconfig [new file with mode: 0644]
src/gallium/drivers/r300/.editorconfig [new file with mode: 0644]
src/gallium/drivers/r600/.editorconfig [new file with mode: 0644]
src/gallium/drivers/radeon/.editorconfig [new file with mode: 0644]
src/gallium/drivers/radeonsi/.editorconfig [new file with mode: 0644]
src/gallium/drivers/vc4/.editorconfig [new file with mode: 0644]
src/gallium/drivers/vc4/kernel/.editorconfig [new file with mode: 0644]
src/gallium/state_trackers/hgl/.editorconfig [new file with mode: 0644]
src/gallium/state_trackers/nine/.editorconfig [new file with mode: 0644]
src/gallium/state_trackers/xa/.editorconfig [new file with mode: 0644]
src/gallium/targets/d3dadapter9/.editorconfig [new file with mode: 0644]
src/gallium/targets/haiku-softpipe/.editorconfig [new file with mode: 0644]
src/gallium/winsys/freedreno/drm/.editorconfig [new file with mode: 0644]
src/gallium/winsys/nouveau/drm/.editorconfig [new file with mode: 0644]
src/gallium/winsys/radeon/drm/.editorconfig [new file with mode: 0644]
src/gallium/winsys/sw/hgl/.editorconfig [new file with mode: 0644]
src/getopt/.editorconfig [new file with mode: 0644]
src/gtest/.editorconfig [new file with mode: 0644]
src/hgl/.editorconfig [new file with mode: 0644]
src/mesa/drivers/dri/nouveau/.editorconfig [new file with mode: 0644]

diff --git a/.editorconfig b/.editorconfig
new file mode 100644 (file)
index 0000000..a8b8a88
--- /dev/null
@@ -0,0 +1,34 @@
+# To use this config on you editor, follow the instructions at:
+# http://editorconfig.org
+
+root = true
+
+[*]
+charset = utf-8
+insert_final_newline = true
+
+[*.{c,h,cpp,hpp,cc,hh}]
+indent_style = space
+indent_size = 3
+
+[{Makefile*,*.mk}]
+indent_style = tab
+
+[{*.py,SCons*}]
+indent_style = space
+indent_size = 4
+
+[*.pl]
+indent_style = space
+indent_size = 4
+
+[*.m4]
+indent_style = space
+indent_size = 2
+
+[*.yml]
+indent_style = space
+indent_size = 2
+
+[*.patch]
+trim_trailing_whitespace = false
diff --git a/bin/.editorconfig b/bin/.editorconfig
new file mode 100644 (file)
index 0000000..b9a948f
--- /dev/null
@@ -0,0 +1,3 @@
+[*.sh]
+indent_style = space
+indent_size = 2
diff --git a/include/D3D9/.editorconfig b/include/D3D9/.editorconfig
new file mode 100644 (file)
index 0000000..0dcc752
--- /dev/null
@@ -0,0 +1,2 @@
+[*.h]
+indent_style = tab
diff --git a/include/c11/.editorconfig b/include/c11/.editorconfig
new file mode 100644 (file)
index 0000000..bdbea00
--- /dev/null
@@ -0,0 +1,3 @@
+[*.h]
+indent_style = space
+indent_size = 4
diff --git a/include/d3dadapter/.editorconfig b/include/d3dadapter/.editorconfig
new file mode 100644 (file)
index 0000000..bdbea00
--- /dev/null
@@ -0,0 +1,3 @@
+[*.h]
+indent_style = space
+indent_size = 4
diff --git a/include/vulkan/.editorconfig b/include/vulkan/.editorconfig
new file mode 100644 (file)
index 0000000..bdbea00
--- /dev/null
@@ -0,0 +1,3 @@
+[*.h]
+indent_style = space
+indent_size = 4
diff --git a/src/egl/drivers/haiku/.editorconfig b/src/egl/drivers/haiku/.editorconfig
new file mode 100644 (file)
index 0000000..5ae8c6f
--- /dev/null
@@ -0,0 +1,2 @@
+[*.cpp]
+indent_style = tab
diff --git a/src/egl/wayland/.editorconfig b/src/egl/wayland/.editorconfig
new file mode 100644 (file)
index 0000000..cc8e11f
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h}]
+indent_style = tab
diff --git a/src/gallium/drivers/freedreno/.editorconfig b/src/gallium/drivers/freedreno/.editorconfig
new file mode 100644 (file)
index 0000000..cc8e11f
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h}]
+indent_style = tab
diff --git a/src/gallium/drivers/r300/.editorconfig b/src/gallium/drivers/r300/.editorconfig
new file mode 100644 (file)
index 0000000..7b12a40
--- /dev/null
@@ -0,0 +1,3 @@
+[*.{c,h}]
+indent_style = space
+indent_size = 4
diff --git a/src/gallium/drivers/r600/.editorconfig b/src/gallium/drivers/r600/.editorconfig
new file mode 100644 (file)
index 0000000..cc8e11f
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h}]
+indent_style = tab
diff --git a/src/gallium/drivers/radeon/.editorconfig b/src/gallium/drivers/radeon/.editorconfig
new file mode 100644 (file)
index 0000000..cc8e11f
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h}]
+indent_style = tab
diff --git a/src/gallium/drivers/radeonsi/.editorconfig b/src/gallium/drivers/radeonsi/.editorconfig
new file mode 100644 (file)
index 0000000..cc8e11f
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h}]
+indent_style = tab
diff --git a/src/gallium/drivers/vc4/.editorconfig b/src/gallium/drivers/vc4/.editorconfig
new file mode 100644 (file)
index 0000000..f3d8c47
--- /dev/null
@@ -0,0 +1,3 @@
+[*.{c,h}]
+indent_style = space
+indent_size = 8
diff --git a/src/gallium/drivers/vc4/kernel/.editorconfig b/src/gallium/drivers/vc4/kernel/.editorconfig
new file mode 100644 (file)
index 0000000..cc8e11f
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h}]
+indent_style = tab
diff --git a/src/gallium/state_trackers/hgl/.editorconfig b/src/gallium/state_trackers/hgl/.editorconfig
new file mode 100644 (file)
index 0000000..f391def
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h,cpp,hpp}]
+indent_style = tab
diff --git a/src/gallium/state_trackers/nine/.editorconfig b/src/gallium/state_trackers/nine/.editorconfig
new file mode 100644 (file)
index 0000000..7b12a40
--- /dev/null
@@ -0,0 +1,3 @@
+[*.{c,h}]
+indent_style = space
+indent_size = 4
diff --git a/src/gallium/state_trackers/xa/.editorconfig b/src/gallium/state_trackers/xa/.editorconfig
new file mode 100644 (file)
index 0000000..7b12a40
--- /dev/null
@@ -0,0 +1,3 @@
+[*.{c,h}]
+indent_style = space
+indent_size = 4
diff --git a/src/gallium/targets/d3dadapter9/.editorconfig b/src/gallium/targets/d3dadapter9/.editorconfig
new file mode 100644 (file)
index 0000000..7b12a40
--- /dev/null
@@ -0,0 +1,3 @@
+[*.{c,h}]
+indent_style = space
+indent_size = 4
diff --git a/src/gallium/targets/haiku-softpipe/.editorconfig b/src/gallium/targets/haiku-softpipe/.editorconfig
new file mode 100644 (file)
index 0000000..f391def
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h,cpp,hpp}]
+indent_style = tab
diff --git a/src/gallium/winsys/freedreno/drm/.editorconfig b/src/gallium/winsys/freedreno/drm/.editorconfig
new file mode 100644 (file)
index 0000000..cc8e11f
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h}]
+indent_style = tab
diff --git a/src/gallium/winsys/nouveau/drm/.editorconfig b/src/gallium/winsys/nouveau/drm/.editorconfig
new file mode 100644 (file)
index 0000000..cc8e11f
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h}]
+indent_style = tab
diff --git a/src/gallium/winsys/radeon/drm/.editorconfig b/src/gallium/winsys/radeon/drm/.editorconfig
new file mode 100644 (file)
index 0000000..7b12a40
--- /dev/null
@@ -0,0 +1,3 @@
+[*.{c,h}]
+indent_style = space
+indent_size = 4
diff --git a/src/gallium/winsys/sw/hgl/.editorconfig b/src/gallium/winsys/sw/hgl/.editorconfig
new file mode 100644 (file)
index 0000000..cc8e11f
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h}]
+indent_style = tab
diff --git a/src/getopt/.editorconfig b/src/getopt/.editorconfig
new file mode 100644 (file)
index 0000000..cc8e11f
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h}]
+indent_style = tab
diff --git a/src/gtest/.editorconfig b/src/gtest/.editorconfig
new file mode 100644 (file)
index 0000000..0880bac
--- /dev/null
@@ -0,0 +1,3 @@
+[*.{cc,h}]
+indent_style = space
+indent_size = 2
diff --git a/src/hgl/.editorconfig b/src/hgl/.editorconfig
new file mode 100644 (file)
index 0000000..0a01d20
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{cpp,h}]
+indent_style = tab
diff --git a/src/mesa/drivers/dri/nouveau/.editorconfig b/src/mesa/drivers/dri/nouveau/.editorconfig
new file mode 100644 (file)
index 0000000..cc8e11f
--- /dev/null
@@ -0,0 +1,2 @@
+[*.{c,h}]
+indent_style = tab