From 6f172509d084831d272fb4646daef8d96ead8391 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Mon, 7 Oct 2019 03:35:50 -0700 Subject: [PATCH] moved editorconfig to toolconfigsrc --- .gitignore | 1 + Makefile | 5 ++++- .editorconfig => config/toolconfigsrc/editorconfig | 0 3 files changed, 5 insertions(+), 1 deletion(-) rename .editorconfig => config/toolconfigsrc/editorconfig (100%) diff --git a/.gitignore b/.gitignore index bfe1c7cb..3957aad3 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,7 @@ local.properties .flycheck-dir-locals.el .pylintrc .projectile +.editorconfig .clang-format .style.yapf .irony diff --git a/Makefile b/Makefile index 3ebf8b4e..3b248f65 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ DOCPREFIX = "ballisticacore_" # things like tool config files, etc. PREREQS = .dir-locals.el .mypy.ini .pycheckers \ .pylintrc .style.yapf .clang-format \ - .projectile + .projectile .editorconfig # List the targets in this Makefile and basic descriptions for them. list: @@ -310,6 +310,9 @@ TOOL_CFG_SRC = tools/efrotools/snippets.py config/config.json .projectile: config/toolconfigsrc/projectile ${TOOL_CFG_SRC} ${TOOL_CFG_INST} $< $@ +.editorconfig: config/toolconfigsrc/editorconfig ${TOOL_CFG_SRC} + ${TOOL_CFG_INST} $< $@ + .dir-locals.el: config/toolconfigsrc/dir-locals.el ${TOOL_CFG_SRC} ${TOOL_CFG_INST} $< $@ diff --git a/.editorconfig b/config/toolconfigsrc/editorconfig similarity index 100% rename from .editorconfig rename to config/toolconfigsrc/editorconfig