From 45a7aabc80b0bc18e6fec1c3015466e1a2debca4 Mon Sep 17 00:00:00 2001 From: Olaf Meeuwissen Date: Sat, 27 May 2017 13:52:59 +0900 Subject: [PATCH] Add .editorconfig to maintain a more consistent coding style This does not set anything yet. See http://editorconfig.org/ for more information. --- .editorconfig | 9 +++++++++ Makefile.am | 1 + 2 files changed, 10 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..a907a12b5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +# .editorconfig -- settings for consistent coding style conventions +# Copyright (C) 2017 Olaf Meeuwissen +# +# License: GPL-3.0+ + +# Your editor may need a plugin for this configuration to take effect. +# See http://editorconfig.org/#download for details. + +root = true ; look no further diff --git a/Makefile.am b/Makefile.am index ae02ee31c..240a683d1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -13,6 +13,7 @@ dist_doc_DATA = AUTHORS ChangeLog COPYING LICENSE NEWS PROBLEMS PROJECTS \ README.solaris README.unixware2 README.unixware7 README.windows \ README.zeta EXTRA_DIST = $(PACKAGE).lsm +EXTRA_DIST += .editorconfig # # Keep the .gitignore files sorted, and use this target to do it.