From c4a5b187f8a38aa785b64838fc92e5aef9874002 Mon Sep 17 00:00:00 2001 From: Lee Hinman Date: Thu, 4 Feb 2016 14:55:41 -0700 Subject: [PATCH] Update .dir-locals.el for enforced line length Also add compilation command Relates to https://www.github.com/elastic/elasticsearch/pulls/16413 Original commit: elastic/x-pack-elasticsearch@5063ca2865114e15319c3c1a5588c88728787ae3 --- .dir-locals.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.dir-locals.el b/.dir-locals.el index 68db3a9248b..2fdca14f5dd 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -82,4 +82,7 @@ (c-set-offset 'func-decl-cont '++) )) (c-basic-offset . 4) - (c-comment-only-line-offset . (0 . 0))))) + (c-comment-only-line-offset . (0 . 0)) + (fill-column . 140) + (fci-rule-column . 140) + (compile-command . "gradle compileTestJava"))))