mirror of
https://github.com/mysensors/MySensors.git
synced 2026-02-20 01:21:27 +01:00
1. All common tools are hosted and managed in
the tools directory (used for both local development
and continuous integration)
2. Each tool comprises a directory, akin to a bundle,
that encapsulates declarative command-line options,
configuration files and a run script
3. A single bootstrap script configures a
development environment
4. A lightweight runtime provides a common set of
convenience functions and variables to all scripts
References #672
20 lines
363 B
INI
20 lines
363 B
INI
# EditorConfig is awesome: http://EditorConfig.org
|
|
|
|
# top-most EditorConfig file
|
|
root = true
|
|
|
|
# Unix-style newlines with UTF-8 encoding for every file
|
|
[*]
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
|
|
# For all source code
|
|
[*.{c,cpp,h,ino,sh}]
|
|
insert_final_newline = true
|
|
indent_style = tab
|
|
indent_size = 2
|
|
|
|
# Tab indentation also for makefiles
|
|
[Makefile]
|
|
indent_style = tab
|