Based on current conventions at .editorconfig

v2: Changed automatic deletion of trailing white spaces in python
    files upon saving for just highlighting them in any format, as
    suggested by Ilia Mirkin.

Signed-off-by: Andres Gomez <[email protected]>
---
 .dir-locals.el | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 .dir-locals.el

diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
index 0000000..3bdca17
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,11 @@
+((nil . ((indent-tabs-mode . t)
+        (tab-width . 8)
+        (show-trailing-whitespace . t)))
+ (prog-mode .
+           ((c-file-style . "linux")))
+ (cmake-mode .
+            ((cmake-tab-width . 8)))
+ (python-mode .
+             ((indent-tabs-mode . nil)
+              (tab-width . 4)))
+ )
-- 
2.8.0.rc3

_______________________________________________
Piglit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/piglit

Reply via email to