From 8a2cbb88d1657b4aee366605cb3d8ffcc5d3f90a Mon Sep 17 00:00:00 2001 From: Kenth Eriksson Date: Wed, 12 Jun 2019 15:03:37 +0200 Subject: [PATCH] BIRD coding conventions Added Emacs config file describing BIRD coding conventions, as suggested by Kenth Eriksson based on existing practice. --- .dir-locals.el | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 00000000..f1eb3b51 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,7 @@ +; BIRD project coding conventions + +((c-mode + (c-file-style . "bsd") + (c-basic-offset . 2) + (fill-column . 80) + (show-trailing-whitespace . t)))