This is what checkpatch.pl expects, and GitHub's file viewer flags a
missing trailing newline too.
Note that this is different from a blank line at the end of the file. It
just says whether the last line must end in a newline.
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
EditorConfig (https://editorconfig.org) is a widely supported
configuration tool that helps to ensure better consistency amongst
developers by auto-configuring an editor to match the original/intended
style i.e. tab-width etc.
This configuration covers many of the common file formats used in
zephyr.
The configuration was derived by looking at existing files and
ascertaining what configuration they currently use.
This is the top-most EditorConfig file meaning this is the root of all
other EditorConfigs, however sub-directories can set their own up if
they wish to override this.
This has proven especially useful when viewing uncrustified C source
code where the tab-width should be 8 to get proper alignment but many
editors use a tab-width of 4.
Lots of editors support this natively and those that do not probably
have a plugin or extension.
Tested by opening and saving various files to ensure no changes
occurred.
Signed-off-by: Carlos Stuart <carlosstuart1970@gmail.com>