My team maintains several Java repositories in GitHub. Each of them has an .editorconfig file in the root folder and they're all exactly the same. This makes maintaining them a bit of a pain because they all have to be updated individually.
All of us use IntelliJ, which has a feature that will download checkstyle rules from a URL, but there doesn't seem to be a way to do that with the .editorconfig rules.
All of our projects use Maven. Is there any way to make the .editorconfig file accessible through an API and have the projects configured to automatically download it and put it in the root folder?
For anyone not familiar with EditorConfig, more info is here.