1
0
mirror of https://github.com/arduino/library-registry.git synced 2025-07-19 08:03:16 +03:00

Add Git configuration files to template .editorconfig

The `.gitmodules` file defines the properties of a repository's submodules. The file automatically generated by Git
submodule commands use tabs for indentation.

It uses the same file format as the Git configuration file (e.g., `.gitconfig`). Even though the `.gitconfig` file is not
likely to be found under the repository tree, it's possible the `.editorconfig` might end up being used outside the
project specific scope so I added it to the file pattern.
This commit is contained in:
per1234
2021-08-12 16:55:43 -07:00
parent 74dd4052ee
commit 4ebe9b7759

View File

@ -55,3 +55,6 @@ indent_style = space
[*.{yaml,yml}] [*.{yaml,yml}]
indent_size = 2 indent_size = 2
indent_style = space indent_style = space
[{.gitconfig,.gitmodules}]
indent_style = tab