moved editorconfig to toolconfigsrc

This commit is contained in:
Eric Froemling 2019-10-07 03:35:50 -07:00
parent a30d8418c7
commit 6f172509d0
3 changed files with 5 additions and 1 deletions

1
.gitignore vendored
View File

@ -21,6 +21,7 @@ local.properties
.flycheck-dir-locals.el
.pylintrc
.projectile
.editorconfig
.clang-format
.style.yapf
.irony

View File

@ -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} $< $@